From c75868f8b508ae32a0c8490da91bb31b2b96430e Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 17 Jul 2023 05:02:29 -0400 Subject: [PATCH] feat: C23 --- grammar.js | 20 +- src/grammar.json | 237 +- src/node-types.json | 121 +- src/parser.c | 147631 ++++++++++++++++++-------------- test/corpus/declarations.txt | 17 +- test/corpus/preprocessor.txt | 46 + 6 files changed, 83169 insertions(+), 64903 deletions(-) diff --git a/grammar.js b/grammar.js index 4d0647c..94f1488 100644 --- a/grammar.js +++ b/grammar.js @@ -472,15 +472,18 @@ module.exports = grammar({ 'auto', 'register', 'inline', + 'thread_local', ), type_qualifier: _ => choice( 'const', + 'constexpr', 'volatile', 'restrict', '__restrict__', '_Atomic', '_Noreturn', + 'noreturn', ), _type_specifier: $ => choice( @@ -515,9 +518,12 @@ module.exports = grammar({ '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`), @@ -1086,9 +1092,10 @@ module.exports = grammar({ true: _ => token(choice('TRUE', 'true')), false: _ => token(choice('FALSE', 'false')), - null: _ => 'NULL', + null: _ => choice('NULL', 'nullptr'), - identifier: _ => /(\p{XID_Start}|_)\p{XID_Continue}*/, + identifier: _ => + /(\p{XID_Start}|_|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})(\p{XID_Continue}|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})*/, _type_identifier: $ => alias($.identifier, $.type_identifier), _field_identifier: $ => alias($.identifier, $.field_identifier), @@ -1167,7 +1174,7 @@ function preprocIf(suffix, content) { choice(preprocessor('ifdef'), preprocessor('ifndef')), field('name', $.identifier), repeat(content($)), - field('alternative', optional(elseBlock($))), + field('alternative', optional(choice(elseBlock($), $.preproc_elifdef))), preprocessor('endif'), ), @@ -1183,6 +1190,13 @@ function preprocIf(suffix, content) { repeat(content($)), field('alternative', optional(elseBlock($))), ), + + ['preproc_elifdef' + suffix]: $ => seq( + choice(preprocessor('elifdef'), preprocessor('elifndef')), + field('name', $.identifier), + repeat(content($)), + field('alternative', optional(elseBlock($))), + ), }; } diff --git a/src/grammar.json b/src/grammar.json index d0bf0f4..a6d14c9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -424,12 +424,21 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "preproc_else" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] }, { "type": "SYMBOL", - "name": "preproc_elif" + "name": "preproc_elifdef" } ] }, @@ -529,6 +538,74 @@ } ] }, + "preproc_elifdef": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, "preproc_if_in_field_declaration_list": { "type": "SEQ", "members": [ @@ -657,22 +734,31 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_else_in_field_declaration_list" - }, - "named": true, - "value": "preproc_else" + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + } + ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_elif_in_field_declaration_list" - }, - "named": true, - "value": "preproc_elif" + "type": "SYMBOL", + "name": "preproc_elifdef" } ] }, @@ -782,6 +868,84 @@ } ] }, + "preproc_elifdef_in_field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, "preproc_directive": { "type": "PATTERN", "value": "#[ \\t]*[a-zA-Z]\\w*" @@ -3050,6 +3214,10 @@ { "type": "STRING", "value": "inline" + }, + { + "type": "STRING", + "value": "thread_local" } ] }, @@ -3060,6 +3228,10 @@ "type": "STRING", "value": "const" }, + { + "type": "STRING", + "value": "constexpr" + }, { "type": "STRING", "value": "volatile" @@ -3079,6 +3251,10 @@ { "type": "STRING", "value": "_Noreturn" + }, + { + "type": "STRING", + "value": "noreturn" } ] }, @@ -3210,6 +3386,10 @@ "type": "STRING", "value": "ssize_t" }, + { + "type": "STRING", + "value": "ptrdiff_t" + }, { "type": "STRING", "value": "intptr_t" @@ -3222,6 +3402,14 @@ "type": "STRING", "value": "charptr_t" }, + { + "type": "STRING", + "value": "nullptr_t" + }, + { + "type": "STRING", + "value": "max_align_t" + }, { "type": "STRING", "value": "int8_t" @@ -7132,12 +7320,21 @@ } }, "null": { - "type": "STRING", - "value": "NULL" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "NULL" + }, + { + "type": "STRING", + "value": "nullptr" + } + ] }, "identifier": { "type": "PATTERN", - "value": "(\\p{XID_Start}|_)\\p{XID_Continue}*" + "value": "(\\p{XID_Start}|_|\\\\u[0-9A-Fa-f]{4}|\\\\U[0-9A-Fa-f]{8})(\\p{XID_Continue}|\\\\u[0-9A-Fa-f]{4}|\\\\U[0-9A-Fa-f]{8})*" }, "_type_identifier": { "type": "ALIAS", diff --git a/src/node-types.json b/src/node-types.json index df7179a..e59c92c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2247,6 +2247,11 @@ "named": true, "fields": {} }, + { + "type": "null", + "named": true, + "fields": {} + }, { "type": "offsetof_expression", "named": true, @@ -2649,6 +2654,90 @@ ] } }, + { + "type": "preproc_elifdef", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "type_definition", + "named": true + } + ] + } + }, { "type": "preproc_else", "named": true, @@ -2876,6 +2965,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -3486,6 +3579,14 @@ "type": "#elif", "named": false }, + { + "type": "#elifdef", + "named": false + }, + { + "type": "#elifndef", + "named": false + }, { "type": "#else", "named": false @@ -3662,6 +3763,10 @@ "type": "L'", "named": false }, + { + "type": "NULL", + "named": false + }, { "type": "U\"", "named": false @@ -3786,6 +3891,10 @@ "type": "const", "named": false }, + { + "type": "constexpr", + "named": false + }, { "type": "continue", "named": false @@ -3863,8 +3972,12 @@ "named": true }, { - "type": "null", - "named": true + "type": "noreturn", + "named": false + }, + { + "type": "nullptr", + "named": false }, { "type": "number_literal", @@ -3934,6 +4047,10 @@ "type": "system_lib_string", "named": true }, + { + "type": "thread_local", + "named": false + }, { "type": "true", "named": true diff --git a/src/parser.c b/src/parser.c index de2f5a6..086ab79 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1617 -#define LARGE_STATE_COUNT 406 -#define SYMBOL_COUNT 289 +#define STATE_COUNT 1858 +#define LARGE_STATE_COUNT 504 +#define SYMBOL_COUNT 297 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 134 +#define TOKEN_COUNT 140 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -31,283 +31,291 @@ enum { aux_sym_preproc_ifdef_token2 = 12, aux_sym_preproc_else_token1 = 13, aux_sym_preproc_elif_token1 = 14, - sym_preproc_directive = 15, - sym_preproc_arg = 16, - anon_sym_LPAREN2 = 17, - anon_sym_defined = 18, - anon_sym_BANG = 19, - anon_sym_TILDE = 20, - anon_sym_DASH = 21, - anon_sym_PLUS = 22, - anon_sym_STAR = 23, - anon_sym_SLASH = 24, - anon_sym_PERCENT = 25, - anon_sym_PIPE_PIPE = 26, - anon_sym_AMP_AMP = 27, - anon_sym_PIPE = 28, - anon_sym_CARET = 29, - anon_sym_AMP = 30, - anon_sym_EQ_EQ = 31, - anon_sym_BANG_EQ = 32, - anon_sym_GT = 33, - anon_sym_GT_EQ = 34, - anon_sym_LT_EQ = 35, - anon_sym_LT = 36, - anon_sym_LT_LT = 37, - anon_sym_GT_GT = 38, - anon_sym_SEMI = 39, - anon_sym_typedef = 40, - anon_sym_extern = 41, - anon_sym___attribute__ = 42, - anon_sym_COLON_COLON = 43, - anon_sym_LBRACK_LBRACK = 44, - anon_sym_RBRACK_RBRACK = 45, - anon_sym___declspec = 46, - anon_sym___based = 47, - anon_sym___cdecl = 48, - anon_sym___clrcall = 49, - anon_sym___stdcall = 50, - anon_sym___fastcall = 51, - anon_sym___thiscall = 52, - anon_sym___vectorcall = 53, - sym_ms_restrict_modifier = 54, - sym_ms_unsigned_ptr_modifier = 55, - sym_ms_signed_ptr_modifier = 56, - anon_sym__unaligned = 57, - anon_sym___unaligned = 58, - anon_sym_LBRACE = 59, - anon_sym_RBRACE = 60, - anon_sym_LBRACK = 61, - anon_sym_RBRACK = 62, - anon_sym_EQ = 63, - anon_sym_static = 64, - anon_sym_auto = 65, - anon_sym_register = 66, - anon_sym_inline = 67, - anon_sym_const = 68, - anon_sym_volatile = 69, - anon_sym_restrict = 70, - anon_sym___restrict__ = 71, - anon_sym__Atomic = 72, - anon_sym__Noreturn = 73, - anon_sym_signed = 74, - anon_sym_unsigned = 75, - anon_sym_long = 76, - anon_sym_short = 77, - sym_primitive_type = 78, - anon_sym_enum = 79, - anon_sym_COLON = 80, - anon_sym_struct = 81, - anon_sym_union = 82, - anon_sym_if = 83, - anon_sym_else = 84, - anon_sym_switch = 85, - anon_sym_case = 86, - anon_sym_default = 87, - anon_sym_while = 88, - anon_sym_do = 89, - anon_sym_for = 90, - anon_sym_return = 91, - anon_sym_break = 92, - anon_sym_continue = 93, - anon_sym_goto = 94, - anon_sym_QMARK = 95, - anon_sym_STAR_EQ = 96, - anon_sym_SLASH_EQ = 97, - anon_sym_PERCENT_EQ = 98, - anon_sym_PLUS_EQ = 99, - anon_sym_DASH_EQ = 100, - anon_sym_LT_LT_EQ = 101, - anon_sym_GT_GT_EQ = 102, - anon_sym_AMP_EQ = 103, - anon_sym_CARET_EQ = 104, - anon_sym_PIPE_EQ = 105, - anon_sym_DASH_DASH = 106, - anon_sym_PLUS_PLUS = 107, - anon_sym_sizeof = 108, - anon_sym_offsetof = 109, - anon_sym__Generic = 110, - anon_sym_asm = 111, - anon_sym___asm__ = 112, - anon_sym_DOT = 113, - anon_sym_DASH_GT = 114, - sym_number_literal = 115, - anon_sym_L_SQUOTE = 116, - anon_sym_u_SQUOTE = 117, - anon_sym_U_SQUOTE = 118, - anon_sym_u8_SQUOTE = 119, - anon_sym_SQUOTE = 120, - aux_sym_char_literal_token1 = 121, - anon_sym_L_DQUOTE = 122, - anon_sym_u_DQUOTE = 123, - anon_sym_U_DQUOTE = 124, - anon_sym_u8_DQUOTE = 125, - anon_sym_DQUOTE = 126, - aux_sym_string_literal_token1 = 127, - sym_escape_sequence = 128, - sym_system_lib_string = 129, - sym_true = 130, - sym_false = 131, - sym_null = 132, - sym_comment = 133, - sym_translation_unit = 134, - sym_preproc_include = 135, - sym_preproc_def = 136, - sym_preproc_function_def = 137, - sym_preproc_params = 138, - sym_preproc_call = 139, - sym_preproc_if = 140, - sym_preproc_ifdef = 141, - sym_preproc_else = 142, - sym_preproc_elif = 143, - sym_preproc_if_in_field_declaration_list = 144, - sym_preproc_ifdef_in_field_declaration_list = 145, - sym_preproc_else_in_field_declaration_list = 146, - sym_preproc_elif_in_field_declaration_list = 147, - sym__preproc_expression = 148, - sym_preproc_parenthesized_expression = 149, - sym_preproc_defined = 150, - sym_preproc_unary_expression = 151, - sym_preproc_call_expression = 152, - sym_preproc_argument_list = 153, - sym_preproc_binary_expression = 154, - sym_function_definition = 155, - sym_declaration = 156, - sym_type_definition = 157, - sym__declaration_modifiers = 158, - sym__declaration_specifiers = 159, - sym_linkage_specification = 160, - sym_attribute_specifier = 161, - sym_attribute = 162, - sym_attribute_declaration = 163, - sym_ms_declspec_modifier = 164, - sym_ms_based_modifier = 165, - sym_ms_call_modifier = 166, - sym_ms_unaligned_ptr_modifier = 167, - sym_ms_pointer_modifier = 168, - sym_declaration_list = 169, - sym__declarator = 170, - sym__field_declarator = 171, - sym__type_declarator = 172, - sym__abstract_declarator = 173, - sym_parenthesized_declarator = 174, - sym_parenthesized_field_declarator = 175, - sym_parenthesized_type_declarator = 176, - sym_abstract_parenthesized_declarator = 177, - sym_attributed_declarator = 178, - sym_attributed_field_declarator = 179, - sym_attributed_type_declarator = 180, - sym_pointer_declarator = 181, - sym_pointer_field_declarator = 182, - sym_pointer_type_declarator = 183, - sym_abstract_pointer_declarator = 184, - sym_function_declarator = 185, - sym_function_field_declarator = 186, - sym_function_type_declarator = 187, - sym_abstract_function_declarator = 188, - sym_array_declarator = 189, - sym_array_field_declarator = 190, - sym_array_type_declarator = 191, - sym_abstract_array_declarator = 192, - sym_init_declarator = 193, - sym_compound_statement = 194, - sym_storage_class_specifier = 195, - sym_type_qualifier = 196, - sym__type_specifier = 197, - sym_sized_type_specifier = 198, - sym_enum_specifier = 199, - sym_enumerator_list = 200, - sym_struct_specifier = 201, - sym_union_specifier = 202, - sym_field_declaration_list = 203, - sym__field_declaration_list_item = 204, - sym_field_declaration = 205, - sym_bitfield_clause = 206, - sym_enumerator = 207, - sym_variadic_parameter = 208, - sym_parameter_list = 209, - sym_parameter_declaration = 210, - sym_attributed_statement = 211, - sym_labeled_statement = 212, - sym_expression_statement = 213, - sym_if_statement = 214, - sym_else_clause = 215, - sym_switch_statement = 216, - sym_case_statement = 217, - sym_while_statement = 218, - sym_do_statement = 219, - sym_for_statement = 220, - sym_return_statement = 221, - sym_break_statement = 222, - sym_continue_statement = 223, - sym_goto_statement = 224, - sym__expression = 225, - sym_comma_expression = 226, - sym_conditional_expression = 227, - sym_assignment_expression = 228, - sym_pointer_expression = 229, - sym_unary_expression = 230, - sym_binary_expression = 231, - sym_update_expression = 232, - sym_cast_expression = 233, - sym_type_descriptor = 234, - sym_sizeof_expression = 235, - sym_offsetof_expression = 236, - sym_generic_expression = 237, - sym_subscript_expression = 238, - sym_call_expression = 239, - sym_gnu_asm_expression = 240, - sym_gnu_asm_qualifier = 241, - sym_gnu_asm_output_operand_list = 242, - sym_gnu_asm_output_operand = 243, - sym_gnu_asm_input_operand_list = 244, - sym_gnu_asm_input_operand = 245, - sym_gnu_asm_clobber_list = 246, - sym_gnu_asm_goto_list = 247, - sym_argument_list = 248, - sym_field_expression = 249, - sym_compound_literal_expression = 250, - sym_parenthesized_expression = 251, - sym_initializer_list = 252, - sym_initializer_pair = 253, - sym_subscript_designator = 254, - sym_field_designator = 255, - sym_char_literal = 256, - sym_concatenated_string = 257, - sym_string_literal = 258, - sym__empty_declaration = 259, - sym_macro_type_specifier = 260, - aux_sym_translation_unit_repeat1 = 261, - aux_sym_preproc_params_repeat1 = 262, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 263, - aux_sym_preproc_argument_list_repeat1 = 264, - aux_sym_declaration_repeat1 = 265, - aux_sym_type_definition_repeat1 = 266, - aux_sym_type_definition_repeat2 = 267, - aux_sym__declaration_specifiers_repeat1 = 268, - aux_sym_attribute_declaration_repeat1 = 269, - aux_sym_attributed_declarator_repeat1 = 270, - aux_sym_pointer_declarator_repeat1 = 271, - aux_sym_function_declarator_repeat1 = 272, - aux_sym_sized_type_specifier_repeat1 = 273, - aux_sym_enumerator_list_repeat1 = 274, - aux_sym_field_declaration_repeat1 = 275, - aux_sym_parameter_list_repeat1 = 276, - aux_sym_case_statement_repeat1 = 277, - aux_sym_generic_expression_repeat1 = 278, - aux_sym_gnu_asm_expression_repeat1 = 279, - aux_sym_gnu_asm_output_operand_list_repeat1 = 280, - aux_sym_gnu_asm_input_operand_list_repeat1 = 281, - aux_sym_gnu_asm_clobber_list_repeat1 = 282, - aux_sym_gnu_asm_goto_list_repeat1 = 283, - aux_sym_argument_list_repeat1 = 284, - aux_sym_initializer_list_repeat1 = 285, - aux_sym_initializer_pair_repeat1 = 286, - aux_sym_concatenated_string_repeat1 = 287, - aux_sym_string_literal_repeat1 = 288, - alias_sym_field_identifier = 289, - alias_sym_statement_identifier = 290, - alias_sym_type_identifier = 291, + aux_sym_preproc_elifdef_token1 = 15, + aux_sym_preproc_elifdef_token2 = 16, + sym_preproc_directive = 17, + sym_preproc_arg = 18, + anon_sym_LPAREN2 = 19, + anon_sym_defined = 20, + anon_sym_BANG = 21, + anon_sym_TILDE = 22, + anon_sym_DASH = 23, + anon_sym_PLUS = 24, + anon_sym_STAR = 25, + anon_sym_SLASH = 26, + anon_sym_PERCENT = 27, + anon_sym_PIPE_PIPE = 28, + anon_sym_AMP_AMP = 29, + anon_sym_PIPE = 30, + anon_sym_CARET = 31, + anon_sym_AMP = 32, + anon_sym_EQ_EQ = 33, + anon_sym_BANG_EQ = 34, + anon_sym_GT = 35, + anon_sym_GT_EQ = 36, + anon_sym_LT_EQ = 37, + anon_sym_LT = 38, + anon_sym_LT_LT = 39, + anon_sym_GT_GT = 40, + anon_sym_SEMI = 41, + anon_sym_typedef = 42, + anon_sym_extern = 43, + anon_sym___attribute__ = 44, + anon_sym_COLON_COLON = 45, + anon_sym_LBRACK_LBRACK = 46, + anon_sym_RBRACK_RBRACK = 47, + anon_sym___declspec = 48, + anon_sym___based = 49, + anon_sym___cdecl = 50, + anon_sym___clrcall = 51, + anon_sym___stdcall = 52, + anon_sym___fastcall = 53, + anon_sym___thiscall = 54, + anon_sym___vectorcall = 55, + sym_ms_restrict_modifier = 56, + sym_ms_unsigned_ptr_modifier = 57, + sym_ms_signed_ptr_modifier = 58, + anon_sym__unaligned = 59, + anon_sym___unaligned = 60, + anon_sym_LBRACE = 61, + anon_sym_RBRACE = 62, + anon_sym_LBRACK = 63, + anon_sym_RBRACK = 64, + anon_sym_EQ = 65, + anon_sym_static = 66, + anon_sym_auto = 67, + anon_sym_register = 68, + anon_sym_inline = 69, + anon_sym_thread_local = 70, + anon_sym_const = 71, + anon_sym_constexpr = 72, + anon_sym_volatile = 73, + anon_sym_restrict = 74, + anon_sym___restrict__ = 75, + anon_sym__Atomic = 76, + anon_sym__Noreturn = 77, + anon_sym_noreturn = 78, + anon_sym_signed = 79, + anon_sym_unsigned = 80, + anon_sym_long = 81, + anon_sym_short = 82, + sym_primitive_type = 83, + anon_sym_enum = 84, + anon_sym_COLON = 85, + anon_sym_struct = 86, + anon_sym_union = 87, + anon_sym_if = 88, + anon_sym_else = 89, + anon_sym_switch = 90, + anon_sym_case = 91, + anon_sym_default = 92, + anon_sym_while = 93, + anon_sym_do = 94, + anon_sym_for = 95, + anon_sym_return = 96, + anon_sym_break = 97, + anon_sym_continue = 98, + anon_sym_goto = 99, + anon_sym_QMARK = 100, + anon_sym_STAR_EQ = 101, + anon_sym_SLASH_EQ = 102, + anon_sym_PERCENT_EQ = 103, + anon_sym_PLUS_EQ = 104, + anon_sym_DASH_EQ = 105, + anon_sym_LT_LT_EQ = 106, + anon_sym_GT_GT_EQ = 107, + anon_sym_AMP_EQ = 108, + anon_sym_CARET_EQ = 109, + anon_sym_PIPE_EQ = 110, + anon_sym_DASH_DASH = 111, + anon_sym_PLUS_PLUS = 112, + anon_sym_sizeof = 113, + anon_sym_offsetof = 114, + anon_sym__Generic = 115, + anon_sym_asm = 116, + anon_sym___asm__ = 117, + anon_sym_DOT = 118, + anon_sym_DASH_GT = 119, + sym_number_literal = 120, + anon_sym_L_SQUOTE = 121, + anon_sym_u_SQUOTE = 122, + anon_sym_U_SQUOTE = 123, + anon_sym_u8_SQUOTE = 124, + anon_sym_SQUOTE = 125, + aux_sym_char_literal_token1 = 126, + anon_sym_L_DQUOTE = 127, + anon_sym_u_DQUOTE = 128, + anon_sym_U_DQUOTE = 129, + anon_sym_u8_DQUOTE = 130, + anon_sym_DQUOTE = 131, + aux_sym_string_literal_token1 = 132, + sym_escape_sequence = 133, + sym_system_lib_string = 134, + sym_true = 135, + sym_false = 136, + anon_sym_NULL = 137, + anon_sym_nullptr = 138, + sym_comment = 139, + sym_translation_unit = 140, + sym_preproc_include = 141, + sym_preproc_def = 142, + sym_preproc_function_def = 143, + sym_preproc_params = 144, + sym_preproc_call = 145, + sym_preproc_if = 146, + sym_preproc_ifdef = 147, + sym_preproc_else = 148, + sym_preproc_elif = 149, + sym_preproc_elifdef = 150, + sym_preproc_if_in_field_declaration_list = 151, + sym_preproc_ifdef_in_field_declaration_list = 152, + sym_preproc_else_in_field_declaration_list = 153, + sym_preproc_elif_in_field_declaration_list = 154, + sym__preproc_expression = 155, + sym_preproc_parenthesized_expression = 156, + sym_preproc_defined = 157, + sym_preproc_unary_expression = 158, + sym_preproc_call_expression = 159, + sym_preproc_argument_list = 160, + sym_preproc_binary_expression = 161, + sym_function_definition = 162, + sym_declaration = 163, + sym_type_definition = 164, + sym__declaration_modifiers = 165, + sym__declaration_specifiers = 166, + sym_linkage_specification = 167, + sym_attribute_specifier = 168, + sym_attribute = 169, + sym_attribute_declaration = 170, + sym_ms_declspec_modifier = 171, + sym_ms_based_modifier = 172, + sym_ms_call_modifier = 173, + sym_ms_unaligned_ptr_modifier = 174, + sym_ms_pointer_modifier = 175, + sym_declaration_list = 176, + sym__declarator = 177, + sym__field_declarator = 178, + sym__type_declarator = 179, + sym__abstract_declarator = 180, + sym_parenthesized_declarator = 181, + sym_parenthesized_field_declarator = 182, + sym_parenthesized_type_declarator = 183, + sym_abstract_parenthesized_declarator = 184, + sym_attributed_declarator = 185, + sym_attributed_field_declarator = 186, + sym_attributed_type_declarator = 187, + sym_pointer_declarator = 188, + sym_pointer_field_declarator = 189, + sym_pointer_type_declarator = 190, + sym_abstract_pointer_declarator = 191, + sym_function_declarator = 192, + sym_function_field_declarator = 193, + sym_function_type_declarator = 194, + sym_abstract_function_declarator = 195, + sym_array_declarator = 196, + sym_array_field_declarator = 197, + sym_array_type_declarator = 198, + sym_abstract_array_declarator = 199, + sym_init_declarator = 200, + sym_compound_statement = 201, + sym_storage_class_specifier = 202, + sym_type_qualifier = 203, + sym__type_specifier = 204, + sym_sized_type_specifier = 205, + sym_enum_specifier = 206, + sym_enumerator_list = 207, + sym_struct_specifier = 208, + sym_union_specifier = 209, + sym_field_declaration_list = 210, + sym__field_declaration_list_item = 211, + sym_field_declaration = 212, + sym_bitfield_clause = 213, + sym_enumerator = 214, + sym_variadic_parameter = 215, + sym_parameter_list = 216, + sym_parameter_declaration = 217, + sym_attributed_statement = 218, + sym_labeled_statement = 219, + sym_expression_statement = 220, + sym_if_statement = 221, + sym_else_clause = 222, + sym_switch_statement = 223, + sym_case_statement = 224, + sym_while_statement = 225, + sym_do_statement = 226, + sym_for_statement = 227, + sym_return_statement = 228, + sym_break_statement = 229, + sym_continue_statement = 230, + sym_goto_statement = 231, + sym__expression = 232, + sym_comma_expression = 233, + sym_conditional_expression = 234, + sym_assignment_expression = 235, + sym_pointer_expression = 236, + sym_unary_expression = 237, + sym_binary_expression = 238, + sym_update_expression = 239, + sym_cast_expression = 240, + sym_type_descriptor = 241, + sym_sizeof_expression = 242, + sym_offsetof_expression = 243, + sym_generic_expression = 244, + sym_subscript_expression = 245, + sym_call_expression = 246, + sym_gnu_asm_expression = 247, + sym_gnu_asm_qualifier = 248, + sym_gnu_asm_output_operand_list = 249, + sym_gnu_asm_output_operand = 250, + sym_gnu_asm_input_operand_list = 251, + sym_gnu_asm_input_operand = 252, + sym_gnu_asm_clobber_list = 253, + sym_gnu_asm_goto_list = 254, + sym_argument_list = 255, + sym_field_expression = 256, + sym_compound_literal_expression = 257, + sym_parenthesized_expression = 258, + sym_initializer_list = 259, + sym_initializer_pair = 260, + sym_subscript_designator = 261, + sym_field_designator = 262, + sym_char_literal = 263, + sym_concatenated_string = 264, + sym_string_literal = 265, + sym_null = 266, + sym__empty_declaration = 267, + sym_macro_type_specifier = 268, + aux_sym_translation_unit_repeat1 = 269, + aux_sym_preproc_params_repeat1 = 270, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 271, + aux_sym_preproc_argument_list_repeat1 = 272, + aux_sym_declaration_repeat1 = 273, + aux_sym_type_definition_repeat1 = 274, + aux_sym_type_definition_repeat2 = 275, + aux_sym__declaration_specifiers_repeat1 = 276, + aux_sym_attribute_declaration_repeat1 = 277, + aux_sym_attributed_declarator_repeat1 = 278, + aux_sym_pointer_declarator_repeat1 = 279, + aux_sym_function_declarator_repeat1 = 280, + aux_sym_sized_type_specifier_repeat1 = 281, + aux_sym_enumerator_list_repeat1 = 282, + aux_sym_field_declaration_repeat1 = 283, + aux_sym_parameter_list_repeat1 = 284, + aux_sym_case_statement_repeat1 = 285, + aux_sym_generic_expression_repeat1 = 286, + aux_sym_gnu_asm_expression_repeat1 = 287, + aux_sym_gnu_asm_output_operand_list_repeat1 = 288, + aux_sym_gnu_asm_input_operand_list_repeat1 = 289, + aux_sym_gnu_asm_clobber_list_repeat1 = 290, + aux_sym_gnu_asm_goto_list_repeat1 = 291, + aux_sym_argument_list_repeat1 = 292, + aux_sym_initializer_list_repeat1 = 293, + aux_sym_initializer_pair_repeat1 = 294, + aux_sym_concatenated_string_repeat1 = 295, + aux_sym_string_literal_repeat1 = 296, + alias_sym_field_identifier = 297, + alias_sym_statement_identifier = 298, + alias_sym_type_identifier = 299, }; static const char * const ts_symbol_names[] = { @@ -326,6 +334,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_preproc_ifdef_token2] = "#ifndef", [aux_sym_preproc_else_token1] = "#else", [aux_sym_preproc_elif_token1] = "#elif", + [aux_sym_preproc_elifdef_token1] = "#elifdef", + [aux_sym_preproc_elifdef_token2] = "#elifndef", [sym_preproc_directive] = "preproc_directive", [sym_preproc_arg] = "preproc_arg", [anon_sym_LPAREN2] = "(", @@ -379,12 +389,15 @@ static const char * const ts_symbol_names[] = { [anon_sym_auto] = "auto", [anon_sym_register] = "register", [anon_sym_inline] = "inline", + [anon_sym_thread_local] = "thread_local", [anon_sym_const] = "const", + [anon_sym_constexpr] = "constexpr", [anon_sym_volatile] = "volatile", [anon_sym_restrict] = "restrict", [anon_sym___restrict__] = "__restrict__", [anon_sym__Atomic] = "_Atomic", [anon_sym__Noreturn] = "_Noreturn", + [anon_sym_noreturn] = "noreturn", [anon_sym_signed] = "signed", [anon_sym_unsigned] = "unsigned", [anon_sym_long] = "long", @@ -443,7 +456,8 @@ static const char * const ts_symbol_names[] = { [sym_system_lib_string] = "system_lib_string", [sym_true] = "true", [sym_false] = "false", - [sym_null] = "null", + [anon_sym_NULL] = "NULL", + [anon_sym_nullptr] = "nullptr", [sym_comment] = "comment", [sym_translation_unit] = "translation_unit", [sym_preproc_include] = "preproc_include", @@ -455,6 +469,7 @@ static const char * const ts_symbol_names[] = { [sym_preproc_ifdef] = "preproc_ifdef", [sym_preproc_else] = "preproc_else", [sym_preproc_elif] = "preproc_elif", + [sym_preproc_elifdef] = "preproc_elifdef", [sym_preproc_if_in_field_declaration_list] = "preproc_if", [sym_preproc_ifdef_in_field_declaration_list] = "preproc_ifdef", [sym_preproc_else_in_field_declaration_list] = "preproc_else", @@ -570,6 +585,7 @@ static const char * const ts_symbol_names[] = { [sym_char_literal] = "char_literal", [sym_concatenated_string] = "concatenated_string", [sym_string_literal] = "string_literal", + [sym_null] = "null", [sym__empty_declaration] = "_empty_declaration", [sym_macro_type_specifier] = "macro_type_specifier", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", @@ -621,6 +637,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_preproc_ifdef_token2] = aux_sym_preproc_ifdef_token2, [aux_sym_preproc_else_token1] = aux_sym_preproc_else_token1, [aux_sym_preproc_elif_token1] = aux_sym_preproc_elif_token1, + [aux_sym_preproc_elifdef_token1] = aux_sym_preproc_elifdef_token1, + [aux_sym_preproc_elifdef_token2] = aux_sym_preproc_elifdef_token2, [sym_preproc_directive] = sym_preproc_directive, [sym_preproc_arg] = sym_preproc_arg, [anon_sym_LPAREN2] = anon_sym_LPAREN, @@ -674,12 +692,15 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_auto] = anon_sym_auto, [anon_sym_register] = anon_sym_register, [anon_sym_inline] = anon_sym_inline, + [anon_sym_thread_local] = anon_sym_thread_local, [anon_sym_const] = anon_sym_const, + [anon_sym_constexpr] = anon_sym_constexpr, [anon_sym_volatile] = anon_sym_volatile, [anon_sym_restrict] = anon_sym_restrict, [anon_sym___restrict__] = anon_sym___restrict__, [anon_sym__Atomic] = anon_sym__Atomic, [anon_sym__Noreturn] = anon_sym__Noreturn, + [anon_sym_noreturn] = anon_sym_noreturn, [anon_sym_signed] = anon_sym_signed, [anon_sym_unsigned] = anon_sym_unsigned, [anon_sym_long] = anon_sym_long, @@ -738,7 +759,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_system_lib_string] = sym_system_lib_string, [sym_true] = sym_true, [sym_false] = sym_false, - [sym_null] = sym_null, + [anon_sym_NULL] = anon_sym_NULL, + [anon_sym_nullptr] = anon_sym_nullptr, [sym_comment] = sym_comment, [sym_translation_unit] = sym_translation_unit, [sym_preproc_include] = sym_preproc_include, @@ -750,6 +772,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_preproc_ifdef] = sym_preproc_ifdef, [sym_preproc_else] = sym_preproc_else, [sym_preproc_elif] = sym_preproc_elif, + [sym_preproc_elifdef] = sym_preproc_elifdef, [sym_preproc_if_in_field_declaration_list] = sym_preproc_if, [sym_preproc_ifdef_in_field_declaration_list] = sym_preproc_ifdef, [sym_preproc_else_in_field_declaration_list] = sym_preproc_else, @@ -865,6 +888,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_char_literal] = sym_char_literal, [sym_concatenated_string] = sym_concatenated_string, [sym_string_literal] = sym_string_literal, + [sym_null] = sym_null, [sym__empty_declaration] = sym__empty_declaration, [sym_macro_type_specifier] = sym_macro_type_specifier, [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, @@ -961,6 +985,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_preproc_elifdef_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_elifdef_token2] = { + .visible = true, + .named = false, + }, [sym_preproc_directive] = { .visible = true, .named = true, @@ -1173,10 +1205,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_thread_local] = { + .visible = true, + .named = false, + }, [anon_sym_const] = { .visible = true, .named = false, }, + [anon_sym_constexpr] = { + .visible = true, + .named = false, + }, [anon_sym_volatile] = { .visible = true, .named = false, @@ -1197,6 +1237,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_noreturn] = { + .visible = true, + .named = false, + }, [anon_sym_signed] = { .visible = true, .named = false, @@ -1429,9 +1473,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_null] = { + [anon_sym_NULL] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_nullptr] = { + .visible = true, + .named = false, }, [sym_comment] = { .visible = true, @@ -1477,6 +1525,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_elifdef] = { + .visible = true, + .named = true, + }, [sym_preproc_if_in_field_declaration_list] = { .visible = true, .named = true, @@ -1943,6 +1995,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_null] = { + .visible = true, + .named = true, + }, [sym__empty_declaration] = { .visible = false, .named = true, @@ -2655,94 +2711,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 2, - [8] = 8, - [9] = 4, - [10] = 8, - [11] = 6, + [3] = 3, + [4] = 2, + [5] = 2, + [6] = 3, + [7] = 3, + [8] = 3, + [9] = 2, + [10] = 2, + [11] = 3, [12] = 12, - [13] = 6, - [14] = 4, - [15] = 4, - [16] = 2, - [17] = 8, - [18] = 6, - [19] = 8, + [13] = 13, + [14] = 14, + [15] = 12, + [16] = 12, + [17] = 13, + [18] = 13, + [19] = 13, [20] = 20, - [21] = 20, - [22] = 22, - [23] = 23, - [24] = 20, + [21] = 21, + [22] = 12, + [23] = 12, + [24] = 13, [25] = 25, [26] = 26, - [27] = 27, - [28] = 20, - [29] = 26, - [30] = 26, - [31] = 31, - [32] = 25, - [33] = 31, - [34] = 31, + [27] = 20, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 20, + [32] = 29, + [33] = 28, + [34] = 20, [35] = 35, - [36] = 25, - [37] = 23, - [38] = 23, - [39] = 26, - [40] = 25, - [41] = 23, - [42] = 31, - [43] = 43, - [44] = 44, - [45] = 45, - [46] = 46, + [36] = 36, + [37] = 20, + [38] = 35, + [39] = 28, + [40] = 30, + [41] = 30, + [42] = 29, + [43] = 30, + [44] = 29, + [45] = 30, + [46] = 35, [47] = 47, - [48] = 43, - [49] = 47, - [50] = 44, - [51] = 46, - [52] = 46, - [53] = 45, - [54] = 46, - [55] = 45, - [56] = 43, - [57] = 47, - [58] = 44, - [59] = 45, - [60] = 43, - [61] = 47, - [62] = 44, - [63] = 63, - [64] = 63, - [65] = 63, - [66] = 63, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 78, + [48] = 28, + [49] = 35, + [50] = 28, + [51] = 29, + [52] = 52, + [53] = 35, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 55, + [60] = 57, + [61] = 56, + [62] = 54, + [63] = 58, + [64] = 56, + [65] = 55, + [66] = 58, + [67] = 54, + [68] = 57, + [69] = 54, + [70] = 55, + [71] = 58, + [72] = 56, + [73] = 58, + [74] = 57, + [75] = 56, + [76] = 54, + [77] = 55, + [78] = 57, [79] = 79, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, + [80] = 79, + [81] = 79, + [82] = 79, + [83] = 79, [84] = 84, [85] = 85, - [86] = 82, + [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 69, + [90] = 90, [91] = 91, [92] = 92, [93] = 93, @@ -2762,17 +2818,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [107] = 107, [108] = 108, [109] = 109, - [110] = 67, + [110] = 110, [111] = 111, [112] = 112, [113] = 113, [114] = 114, [115] = 115, - [116] = 114, + [116] = 116, [117] = 117, [118] = 118, [119] = 119, - [120] = 112, + [120] = 120, [121] = 121, [122] = 122, [123] = 123, @@ -2783,511 +2839,511 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [128] = 128, [129] = 129, [130] = 130, - [131] = 113, - [132] = 122, - [133] = 117, + [131] = 131, + [132] = 132, + [133] = 133, [134] = 134, - [135] = 128, + [135] = 135, [136] = 136, - [137] = 128, - [138] = 134, - [139] = 123, + [137] = 137, + [138] = 84, + [139] = 139, [140] = 140, - [141] = 119, - [142] = 134, - [143] = 118, - [144] = 114, - [145] = 113, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, [146] = 146, - [147] = 130, - [148] = 121, - [149] = 129, - [150] = 150, - [151] = 151, - [152] = 122, - [153] = 124, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 68, - [161] = 118, - [162] = 119, - [163] = 163, - [164] = 158, - [165] = 121, - [166] = 159, - [167] = 167, - [168] = 127, - [169] = 169, - [170] = 169, - [171] = 163, - [172] = 117, - [173] = 169, - [174] = 124, - [175] = 122, - [176] = 163, - [177] = 177, - [178] = 112, - [179] = 128, - [180] = 127, - [181] = 181, - [182] = 123, - [183] = 114, - [184] = 159, - [185] = 121, - [186] = 118, - [187] = 187, - [188] = 68, - [189] = 134, - [190] = 129, - [191] = 130, - [192] = 117, - [193] = 169, - [194] = 119, - [195] = 113, - [196] = 68, - [197] = 197, - [198] = 112, - [199] = 159, - [200] = 200, - [201] = 123, - [202] = 163, - [203] = 203, - [204] = 124, - [205] = 205, - [206] = 130, - [207] = 127, - [208] = 158, - [209] = 129, - [210] = 158, - [211] = 211, - [212] = 84, - [213] = 79, - [214] = 100, - [215] = 102, - [216] = 111, + [147] = 147, + [148] = 118, + [149] = 112, + [150] = 100, + [151] = 99, + [152] = 106, + [153] = 93, + [154] = 89, + [155] = 103, + [156] = 104, + [157] = 86, + [158] = 106, + [159] = 102, + [160] = 87, + [161] = 90, + [162] = 91, + [163] = 92, + [164] = 94, + [165] = 107, + [166] = 85, + [167] = 108, + [168] = 96, + [169] = 109, + [170] = 110, + [171] = 102, + [172] = 111, + [173] = 97, + [174] = 101, + [175] = 98, + [176] = 95, + [177] = 125, + [178] = 113, + [179] = 114, + [180] = 115, + [181] = 116, + [182] = 117, + [183] = 124, + [184] = 123, + [185] = 122, + [186] = 105, + [187] = 121, + [188] = 120, + [189] = 119, + [190] = 130, + [191] = 131, + [192] = 134, + [193] = 128, + [194] = 129, + [195] = 84, + [196] = 145, + [197] = 137, + [198] = 139, + [199] = 140, + [200] = 132, + [201] = 141, + [202] = 135, + [203] = 147, + [204] = 126, + [205] = 144, + [206] = 133, + [207] = 146, + [208] = 127, + [209] = 84, + [210] = 143, + [211] = 84, + [212] = 142, + [213] = 136, + [214] = 112, + [215] = 97, + [216] = 93, [217] = 89, - [218] = 88, - [219] = 72, - [220] = 71, - [221] = 74, - [222] = 76, - [223] = 103, - [224] = 77, - [225] = 78, - [226] = 105, - [227] = 106, - [228] = 80, - [229] = 79, - [230] = 85, - [231] = 81, - [232] = 82, - [233] = 75, - [234] = 84, - [235] = 98, - [236] = 104, - [237] = 96, - [238] = 95, - [239] = 93, - [240] = 73, - [241] = 92, - [242] = 94, - [243] = 83, - [244] = 101, - [245] = 97, - [246] = 99, - [247] = 101, - [248] = 81, - [249] = 79, - [250] = 99, - [251] = 87, - [252] = 69, - [253] = 97, - [254] = 78, - [255] = 77, - [256] = 91, - [257] = 93, - [258] = 107, - [259] = 95, - [260] = 111, - [261] = 108, - [262] = 76, - [263] = 96, - [264] = 91, - [265] = 87, - [266] = 89, - [267] = 88, - [268] = 71, - [269] = 80, - [270] = 111, - [271] = 100, - [272] = 102, - [273] = 74, - [274] = 103, - [275] = 105, - [276] = 106, - [277] = 85, - [278] = 70, - [279] = 109, - [280] = 72, - [281] = 75, - [282] = 109, - [283] = 69, - [284] = 108, - [285] = 89, - [286] = 107, - [287] = 107, - [288] = 101, - [289] = 99, - [290] = 97, - [291] = 108, - [292] = 98, - [293] = 94, - [294] = 104, - [295] = 92, - [296] = 109, - [297] = 73, - [298] = 88, - [299] = 71, - [300] = 80, - [301] = 85, - [302] = 70, - [303] = 83, - [304] = 72, - [305] = 83, - [306] = 73, - [307] = 106, - [308] = 87, - [309] = 104, - [310] = 70, - [311] = 91, - [312] = 98, - [313] = 84, - [314] = 93, - [315] = 75, - [316] = 105, - [317] = 82, - [318] = 95, - [319] = 103, - [320] = 81, - [321] = 94, - [322] = 96, - [323] = 74, - [324] = 76, - [325] = 92, - [326] = 102, - [327] = 100, - [328] = 78, - [329] = 77, - [330] = 154, - [331] = 126, - [332] = 151, - [333] = 125, - [334] = 126, - [335] = 146, - [336] = 177, - [337] = 150, - [338] = 154, - [339] = 140, - [340] = 146, - [341] = 200, - [342] = 140, - [343] = 203, - [344] = 177, - [345] = 125, - [346] = 197, - [347] = 115, - [348] = 115, - [349] = 177, - [350] = 167, - [351] = 155, - [352] = 187, - [353] = 167, - [354] = 150, - [355] = 211, - [356] = 205, - [357] = 156, - [358] = 157, - [359] = 140, - [360] = 146, - [361] = 200, - [362] = 211, - [363] = 167, - [364] = 136, - [365] = 205, - [366] = 205, - [367] = 115, - [368] = 181, - [369] = 211, - [370] = 126, - [371] = 150, - [372] = 203, - [373] = 125, - [374] = 157, - [375] = 181, - [376] = 187, - [377] = 157, - [378] = 200, - [379] = 136, - [380] = 197, - [381] = 136, - [382] = 197, - [383] = 156, - [384] = 155, - [385] = 181, - [386] = 154, - [387] = 187, - [388] = 151, - [389] = 155, - [390] = 151, - [391] = 203, - [392] = 156, + [218] = 103, + [219] = 104, + [220] = 86, + [221] = 107, + [222] = 108, + [223] = 109, + [224] = 110, + [225] = 111, + [226] = 112, + [227] = 113, + [228] = 114, + [229] = 115, + [230] = 116, + [231] = 117, + [232] = 118, + [233] = 119, + [234] = 120, + [235] = 121, + [236] = 122, + [237] = 123, + [238] = 124, + [239] = 125, + [240] = 95, + [241] = 98, + [242] = 87, + [243] = 97, + [244] = 90, + [245] = 96, + [246] = 85, + [247] = 94, + [248] = 92, + [249] = 91, + [250] = 91, + [251] = 92, + [252] = 90, + [253] = 87, + [254] = 106, + [255] = 89, + [256] = 93, + [257] = 88, + [258] = 99, + [259] = 100, + [260] = 101, + [261] = 102, + [262] = 105, + [263] = 103, + [264] = 94, + [265] = 99, + [266] = 100, + [267] = 101, + [268] = 104, + [269] = 86, + [270] = 107, + [271] = 108, + [272] = 109, + [273] = 110, + [274] = 111, + [275] = 85, + [276] = 113, + [277] = 114, + [278] = 115, + [279] = 116, + [280] = 117, + [281] = 118, + [282] = 96, + [283] = 119, + [284] = 105, + [285] = 102, + [286] = 101, + [287] = 100, + [288] = 99, + [289] = 93, + [290] = 89, + [291] = 120, + [292] = 121, + [293] = 106, + [294] = 87, + [295] = 90, + [296] = 91, + [297] = 92, + [298] = 94, + [299] = 85, + [300] = 96, + [301] = 122, + [302] = 123, + [303] = 124, + [304] = 97, + [305] = 98, + [306] = 105, + [307] = 95, + [308] = 125, + [309] = 124, + [310] = 123, + [311] = 122, + [312] = 121, + [313] = 120, + [314] = 125, + [315] = 95, + [316] = 119, + [317] = 118, + [318] = 117, + [319] = 116, + [320] = 115, + [321] = 114, + [322] = 113, + [323] = 112, + [324] = 111, + [325] = 110, + [326] = 109, + [327] = 98, + [328] = 108, + [329] = 107, + [330] = 86, + [331] = 104, + [332] = 103, + [333] = 333, + [334] = 333, + [335] = 147, + [336] = 135, + [337] = 337, + [338] = 337, + [339] = 144, + [340] = 340, + [341] = 146, + [342] = 342, + [343] = 333, + [344] = 344, + [345] = 345, + [346] = 344, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 351, + [355] = 355, + [356] = 356, + [357] = 349, + [358] = 358, + [359] = 348, + [360] = 347, + [361] = 345, + [362] = 145, + [363] = 363, + [364] = 345, + [365] = 130, + [366] = 142, + [367] = 137, + [368] = 143, + [369] = 347, + [370] = 348, + [371] = 127, + [372] = 363, + [373] = 349, + [374] = 351, + [375] = 127, + [376] = 358, + [377] = 356, + [378] = 133, + [379] = 146, + [380] = 135, + [381] = 363, + [382] = 355, + [383] = 133, + [384] = 353, + [385] = 352, + [386] = 358, + [387] = 350, + [388] = 139, + [389] = 140, + [390] = 350, + [391] = 356, + [392] = 132, [393] = 393, [394] = 394, - [395] = 394, - [396] = 393, - [397] = 393, - [398] = 394, - [399] = 393, - [400] = 67, - [401] = 394, - [402] = 67, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 421, - [428] = 424, - [429] = 421, - [430] = 423, - [431] = 424, - [432] = 423, - [433] = 425, - [434] = 425, - [435] = 435, - [436] = 435, - [437] = 435, - [438] = 435, - [439] = 435, - [440] = 435, - [441] = 435, - [442] = 435, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 446, - [448] = 443, - [449] = 443, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 453, - [458] = 458, - [459] = 455, - [460] = 460, - [461] = 461, - [462] = 458, - [463] = 454, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 465, - [468] = 468, - [469] = 469, - [470] = 465, - [471] = 471, - [472] = 458, - [473] = 465, - [474] = 456, - [475] = 455, - [476] = 468, - [477] = 466, - [478] = 461, - [479] = 479, - [480] = 454, - [481] = 469, - [482] = 454, - [483] = 479, - [484] = 469, - [485] = 458, - [486] = 453, - [487] = 456, - [488] = 456, - [489] = 469, - [490] = 468, - [491] = 461, - [492] = 468, - [493] = 461, - [494] = 455, - [495] = 479, - [496] = 496, - [497] = 453, - [498] = 466, - [499] = 479, - [500] = 466, + [395] = 355, + [396] = 356, + [397] = 134, + [398] = 128, + [399] = 355, + [400] = 358, + [401] = 129, + [402] = 337, + [403] = 130, + [404] = 340, + [405] = 344, + [406] = 333, + [407] = 131, + [408] = 363, + [409] = 393, + [410] = 333, + [411] = 342, + [412] = 137, + [413] = 345, + [414] = 347, + [415] = 348, + [416] = 139, + [417] = 349, + [418] = 351, + [419] = 140, + [420] = 342, + [421] = 393, + [422] = 342, + [423] = 126, + [424] = 394, + [425] = 344, + [426] = 133, + [427] = 393, + [428] = 353, + [429] = 141, + [430] = 340, + [431] = 352, + [432] = 141, + [433] = 131, + [434] = 136, + [435] = 136, + [436] = 337, + [437] = 142, + [438] = 143, + [439] = 353, + [440] = 145, + [441] = 144, + [442] = 132, + [443] = 352, + [444] = 350, + [445] = 350, + [446] = 130, + [447] = 142, + [448] = 129, + [449] = 128, + [450] = 126, + [451] = 394, + [452] = 340, + [453] = 143, + [454] = 134, + [455] = 147, + [456] = 147, + [457] = 134, + [458] = 355, + [459] = 127, + [460] = 126, + [461] = 128, + [462] = 356, + [463] = 129, + [464] = 352, + [465] = 353, + [466] = 146, + [467] = 131, + [468] = 351, + [469] = 144, + [470] = 337, + [471] = 358, + [472] = 349, + [473] = 394, + [474] = 136, + [475] = 340, + [476] = 394, + [477] = 342, + [478] = 348, + [479] = 363, + [480] = 347, + [481] = 145, + [482] = 393, + [483] = 132, + [484] = 137, + [485] = 135, + [486] = 345, + [487] = 139, + [488] = 141, + [489] = 344, + [490] = 140, + [491] = 491, + [492] = 492, + [493] = 491, + [494] = 492, + [495] = 491, + [496] = 492, + [497] = 492, + [498] = 491, + [499] = 88, + [500] = 500, [501] = 501, - [502] = 502, - [503] = 502, + [502] = 88, + [503] = 503, [504] = 504, [505] = 505, [506] = 506, - [507] = 507, + [507] = 506, [508] = 508, - [509] = 502, + [509] = 506, [510] = 510, - [511] = 511, - [512] = 512, + [511] = 504, + [512] = 504, [513] = 513, [514] = 514, [515] = 515, - [516] = 516, - [517] = 502, + [516] = 506, + [517] = 517, [518] = 518, [519] = 519, - [520] = 505, - [521] = 521, + [520] = 520, + [521] = 504, [522] = 522, [523] = 523, [524] = 524, [525] = 525, [526] = 526, [527] = 527, - [528] = 528, - [529] = 529, + [528] = 526, + [529] = 526, [530] = 530, - [531] = 524, - [532] = 523, - [533] = 521, + [531] = 531, + [532] = 532, + [533] = 530, [534] = 534, - [535] = 521, - [536] = 527, - [537] = 537, + [535] = 526, + [536] = 530, + [537] = 530, [538] = 538, - [539] = 539, - [540] = 540, - [541] = 523, - [542] = 529, - [543] = 525, - [544] = 524, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 521, - [549] = 527, + [539] = 538, + [540] = 538, + [541] = 538, + [542] = 538, + [543] = 538, + [544] = 538, + [545] = 538, + [546] = 538, + [547] = 538, + [548] = 532, + [549] = 549, [550] = 550, - [551] = 551, - [552] = 552, + [551] = 532, + [552] = 532, [553] = 553, - [554] = 527, + [554] = 554, [555] = 555, [556] = 556, - [557] = 523, - [558] = 529, - [559] = 524, + [557] = 557, + [558] = 556, + [559] = 559, [560] = 560, - [561] = 528, - [562] = 537, - [563] = 538, - [564] = 539, - [565] = 529, - [566] = 545, - [567] = 556, - [568] = 546, - [569] = 547, - [570] = 550, - [571] = 522, - [572] = 537, - [573] = 552, - [574] = 555, + [561] = 561, + [562] = 561, + [563] = 563, + [564] = 561, + [565] = 565, + [566] = 566, + [567] = 565, + [568] = 565, + [569] = 565, + [570] = 563, + [571] = 559, + [572] = 560, + [573] = 563, + [574] = 574, [575] = 575, - [576] = 555, - [577] = 538, - [578] = 552, + [576] = 561, + [577] = 577, + [578] = 565, [579] = 579, [580] = 580, - [581] = 538, - [582] = 539, - [583] = 545, - [584] = 546, - [585] = 522, - [586] = 550, - [587] = 547, - [588] = 546, - [589] = 545, + [581] = 581, + [582] = 579, + [583] = 583, + [584] = 577, + [585] = 585, + [586] = 585, + [587] = 575, + [588] = 574, + [589] = 580, [590] = 560, - [591] = 547, - [592] = 550, - [593] = 539, - [594] = 522, - [595] = 537, - [596] = 552, - [597] = 560, - [598] = 528, - [599] = 555, - [600] = 528, - [601] = 560, - [602] = 602, - [603] = 603, - [604] = 444, - [605] = 403, - [606] = 606, - [607] = 404, - [608] = 606, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, + [591] = 563, + [592] = 575, + [593] = 561, + [594] = 585, + [595] = 560, + [596] = 580, + [597] = 559, + [598] = 577, + [599] = 559, + [600] = 574, + [601] = 580, + [602] = 579, + [603] = 585, + [604] = 559, + [605] = 563, + [606] = 579, + [607] = 574, + [608] = 577, + [609] = 575, + [610] = 574, + [611] = 580, + [612] = 585, + [613] = 579, + [614] = 577, + [615] = 575, [616] = 616, [617] = 617, [618] = 618, [619] = 619, - [620] = 620, - [621] = 621, + [620] = 618, + [621] = 618, [622] = 622, [623] = 623, [624] = 624, [625] = 625, - [626] = 626, - [627] = 627, - [628] = 628, - [629] = 629, - [630] = 630, + [626] = 622, + [627] = 619, + [628] = 622, + [629] = 622, + [630] = 618, [631] = 631, [632] = 632, [633] = 633, [634] = 634, - [635] = 635, + [635] = 618, [636] = 636, [637] = 637, [638] = 638, @@ -3301,289 +3357,289 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [646] = 646, [647] = 647, [648] = 648, - [649] = 649, - [650] = 650, + [649] = 643, + [650] = 639, [651] = 651, - [652] = 652, + [652] = 639, [653] = 653, - [654] = 654, + [654] = 638, [655] = 655, - [656] = 645, + [656] = 656, [657] = 657, [658] = 658, - [659] = 658, - [660] = 658, - [661] = 658, - [662] = 632, - [663] = 647, - [664] = 654, - [665] = 634, - [666] = 628, - [667] = 667, - [668] = 655, + [659] = 642, + [660] = 640, + [661] = 642, + [662] = 662, + [663] = 643, + [664] = 638, + [665] = 657, + [666] = 648, + [667] = 658, + [668] = 644, [669] = 669, - [670] = 667, - [671] = 617, - [672] = 622, - [673] = 667, - [674] = 615, - [675] = 648, - [676] = 641, - [677] = 653, - [678] = 635, - [679] = 650, - [680] = 611, - [681] = 612, - [682] = 614, - [683] = 667, - [684] = 644, - [685] = 623, - [686] = 645, - [687] = 687, - [688] = 652, - [689] = 689, - [690] = 613, - [691] = 691, + [670] = 642, + [671] = 671, + [672] = 662, + [673] = 644, + [674] = 643, + [675] = 645, + [676] = 653, + [677] = 646, + [678] = 678, + [679] = 644, + [680] = 643, + [681] = 651, + [682] = 656, + [683] = 662, + [684] = 651, + [685] = 647, + [686] = 653, + [687] = 669, + [688] = 662, + [689] = 638, + [690] = 690, + [691] = 640, [692] = 692, - [693] = 693, - [694] = 617, - [695] = 115, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, + [693] = 647, + [694] = 694, + [695] = 695, + [696] = 657, + [697] = 656, + [698] = 645, + [699] = 648, + [700] = 658, [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 641, - [708] = 708, - [709] = 709, - [710] = 628, - [711] = 615, - [712] = 614, - [713] = 612, - [714] = 140, - [715] = 622, - [716] = 197, - [717] = 203, - [718] = 146, - [719] = 611, - [720] = 691, - [721] = 721, - [722] = 154, - [723] = 655, - [724] = 648, - [725] = 632, - [726] = 647, - [727] = 635, - [728] = 404, - [729] = 603, + [702] = 645, + [703] = 646, + [704] = 647, + [705] = 651, + [706] = 639, + [707] = 653, + [708] = 656, + [709] = 646, + [710] = 657, + [711] = 640, + [712] = 648, + [713] = 658, + [714] = 714, + [715] = 690, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 549, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 501, + [726] = 500, + [727] = 724, + [728] = 728, + [729] = 729, [730] = 730, - [731] = 403, - [732] = 602, - [733] = 699, - [734] = 154, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 734, [735] = 735, - [736] = 696, + [736] = 736, [737] = 737, - [738] = 735, + [738] = 738, [739] = 739, - [740] = 115, + [740] = 740, [741] = 741, - [742] = 703, - [743] = 702, + [742] = 742, + [743] = 743, [744] = 744, [745] = 745, [746] = 746, [747] = 747, - [748] = 705, - [749] = 701, - [750] = 706, - [751] = 700, - [752] = 747, - [753] = 703, - [754] = 747, - [755] = 203, - [756] = 706, - [757] = 698, - [758] = 697, - [759] = 197, - [760] = 747, - [761] = 704, - [762] = 709, - [763] = 697, - [764] = 698, - [765] = 699, - [766] = 146, - [767] = 140, - [768] = 700, - [769] = 702, - [770] = 709, - [771] = 696, - [772] = 701, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 771, + [772] = 772, [773] = 773, - [774] = 140, - [775] = 708, - [776] = 708, - [777] = 146, - [778] = 203, - [779] = 197, - [780] = 154, - [781] = 704, - [782] = 705, + [774] = 774, + [775] = 775, + [776] = 775, + [777] = 777, + [778] = 753, + [779] = 775, + [780] = 775, + [781] = 775, + [782] = 782, [783] = 783, - [784] = 115, + [784] = 784, [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 791, - [794] = 789, - [795] = 795, - [796] = 790, - [797] = 785, - [798] = 798, - [799] = 790, - [800] = 800, - [801] = 801, - [802] = 801, - [803] = 803, - [804] = 803, - [805] = 805, - [806] = 806, - [807] = 786, - [808] = 791, - [809] = 809, - [810] = 805, - [811] = 789, - [812] = 812, - [813] = 795, - [814] = 805, + [786] = 785, + [787] = 785, + [788] = 785, + [789] = 785, + [790] = 763, + [791] = 746, + [792] = 760, + [793] = 735, + [794] = 759, + [795] = 743, + [796] = 757, + [797] = 758, + [798] = 761, + [799] = 749, + [800] = 772, + [801] = 737, + [802] = 762, + [803] = 751, + [804] = 742, + [805] = 756, + [806] = 754, + [807] = 807, + [808] = 755, + [809] = 729, + [810] = 753, + [811] = 769, + [812] = 765, + [813] = 813, + [814] = 814, [815] = 815, - [816] = 795, - [817] = 786, - [818] = 789, + [816] = 816, + [817] = 817, + [818] = 818, [819] = 819, [820] = 820, - [821] = 803, - [822] = 790, - [823] = 792, - [824] = 786, - [825] = 801, - [826] = 826, - [827] = 798, - [828] = 826, - [829] = 792, - [830] = 795, - [831] = 798, - [832] = 805, - [833] = 833, - [834] = 785, - [835] = 803, - [836] = 806, - [837] = 792, - [838] = 806, - [839] = 806, - [840] = 798, - [841] = 791, - [842] = 801, - [843] = 785, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 622, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 847, - [857] = 655, - [858] = 648, + [821] = 130, + [822] = 142, + [823] = 143, + [824] = 824, + [825] = 825, + [826] = 127, + [827] = 827, + [828] = 828, + [829] = 146, + [830] = 135, + [831] = 831, + [832] = 832, + [833] = 142, + [834] = 815, + [835] = 816, + [836] = 825, + [837] = 784, + [838] = 824, + [839] = 839, + [840] = 827, + [841] = 135, + [842] = 146, + [843] = 817, + [844] = 831, + [845] = 127, + [846] = 130, + [847] = 143, + [848] = 828, + [849] = 814, + [850] = 818, + [851] = 820, + [852] = 819, + [853] = 813, + [854] = 501, + [855] = 500, + [856] = 856, + [857] = 720, + [858] = 719, [859] = 859, - [860] = 860, - [861] = 632, - [862] = 847, - [863] = 851, - [864] = 647, - [865] = 635, - [866] = 866, - [867] = 641, - [868] = 868, - [869] = 869, - [870] = 851, - [871] = 871, - [872] = 872, - [873] = 611, - [874] = 628, - [875] = 875, - [876] = 876, - [877] = 612, - [878] = 847, - [879] = 614, - [880] = 880, - [881] = 615, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 851, - [886] = 886, - [887] = 887, - [888] = 617, - [889] = 889, - [890] = 890, - [891] = 891, + [860] = 825, + [861] = 819, + [862] = 817, + [863] = 820, + [864] = 143, + [865] = 865, + [866] = 818, + [867] = 142, + [868] = 827, + [869] = 130, + [870] = 142, + [871] = 824, + [872] = 143, + [873] = 127, + [874] = 146, + [875] = 825, + [876] = 135, + [877] = 135, + [878] = 818, + [879] = 815, + [880] = 813, + [881] = 817, + [882] = 816, + [883] = 827, + [884] = 831, + [885] = 820, + [886] = 828, + [887] = 816, + [888] = 888, + [889] = 888, + [890] = 814, + [891] = 815, [892] = 892, - [893] = 892, - [894] = 892, - [895] = 892, + [893] = 146, + [894] = 130, + [895] = 888, [896] = 896, - [897] = 897, - [898] = 898, + [897] = 831, + [898] = 813, [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 907, - [910] = 669, - [911] = 907, - [912] = 906, - [913] = 906, - [914] = 907, - [915] = 908, - [916] = 906, - [917] = 917, - [918] = 918, - [919] = 919, + [900] = 819, + [901] = 814, + [902] = 828, + [903] = 888, + [904] = 127, + [905] = 888, + [906] = 824, + [907] = 751, + [908] = 761, + [909] = 762, + [910] = 763, + [911] = 746, + [912] = 757, + [913] = 759, + [914] = 755, + [915] = 756, + [916] = 754, + [917] = 760, + [918] = 758, + [919] = 743, [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 925, + [925] = 922, [926] = 926, - [927] = 927, + [927] = 922, [928] = 928, [929] = 929, [930] = 930, - [931] = 931, + [931] = 922, [932] = 932, [933] = 933, [934] = 934, @@ -3592,164 +3648,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [937] = 937, [938] = 938, [939] = 939, - [940] = 940, + [940] = 939, [941] = 941, - [942] = 942, - [943] = 941, + [942] = 922, + [943] = 943, [944] = 944, - [945] = 944, - [946] = 940, + [945] = 945, + [946] = 946, [947] = 947, [948] = 948, - [949] = 609, + [949] = 949, [950] = 950, [951] = 951, [952] = 952, [953] = 953, [954] = 954, [955] = 955, - [956] = 956, - [957] = 957, + [956] = 945, + [957] = 947, [958] = 958, - [959] = 959, - [960] = 954, - [961] = 961, - [962] = 962, - [963] = 963, + [959] = 945, + [960] = 960, + [961] = 949, + [962] = 958, + [963] = 951, [964] = 964, - [965] = 965, + [965] = 950, [966] = 966, - [967] = 967, + [967] = 950, [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, + [969] = 950, + [970] = 949, + [971] = 951, [972] = 972, [973] = 973, [974] = 974, - [975] = 975, + [975] = 958, [976] = 976, - [977] = 947, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 972, - [985] = 985, - [986] = 947, - [987] = 987, - [988] = 972, - [989] = 965, + [977] = 972, + [978] = 944, + [979] = 973, + [980] = 972, + [981] = 945, + [982] = 972, + [983] = 973, + [984] = 984, + [985] = 968, + [986] = 955, + [987] = 968, + [988] = 973, + [989] = 966, [990] = 966, - [991] = 967, + [991] = 955, [992] = 968, - [993] = 993, - [994] = 969, - [995] = 971, - [996] = 973, - [997] = 974, - [998] = 975, - [999] = 999, - [1000] = 976, + [993] = 966, + [994] = 968, + [995] = 966, + [996] = 996, + [997] = 945, + [998] = 973, + [999] = 955, + [1000] = 1000, [1001] = 1001, - [1002] = 956, - [1003] = 1003, - [1004] = 947, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 609, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, + [1002] = 948, + [1003] = 951, + [1004] = 948, + [1005] = 947, + [1006] = 950, + [1007] = 955, + [1008] = 972, + [1009] = 949, + [1010] = 958, + [1011] = 951, [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 800, - [1016] = 1011, - [1017] = 1010, - [1018] = 1018, - [1019] = 1012, - [1020] = 1013, - [1021] = 1014, - [1022] = 1011, - [1023] = 1010, - [1024] = 983, + [1013] = 947, + [1014] = 948, + [1015] = 947, + [1016] = 958, + [1017] = 949, + [1018] = 948, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 762, [1025] = 1025, - [1026] = 980, - [1027] = 979, - [1028] = 1018, - [1029] = 1012, - [1030] = 1013, - [1031] = 1014, - [1032] = 1014, - [1033] = 1013, - [1034] = 1011, - [1035] = 1010, - [1036] = 1036, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1027, + [1036] = 1027, [1037] = 1037, [1038] = 1038, - [1039] = 951, - [1040] = 953, - [1041] = 959, - [1042] = 961, - [1043] = 963, - [1044] = 964, - [1045] = 970, - [1046] = 948, - [1047] = 981, - [1048] = 982, - [1049] = 985, - [1050] = 1050, - [1051] = 1005, - [1052] = 1012, - [1053] = 1018, - [1054] = 962, - [1055] = 1055, - [1056] = 1056, - [1057] = 1001, - [1058] = 1003, - [1059] = 1059, + [1039] = 1027, + [1040] = 1040, + [1041] = 1038, + [1042] = 1027, + [1043] = 1043, + [1044] = 763, + [1045] = 1045, + [1046] = 761, + [1047] = 760, + [1048] = 759, + [1049] = 758, + [1050] = 757, + [1051] = 756, + [1052] = 755, + [1053] = 1053, + [1054] = 1038, + [1055] = 754, + [1056] = 751, + [1057] = 1038, + [1058] = 746, + [1059] = 743, [1060] = 1060, - [1061] = 1025, + [1061] = 1061, [1062] = 1062, - [1063] = 1063, + [1063] = 1062, [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1067, + [1065] = 1060, + [1066] = 1060, + [1067] = 777, + [1068] = 1068, [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1067, - [1074] = 1069, - [1075] = 1072, - [1076] = 1072, - [1077] = 1069, - [1078] = 1070, - [1079] = 1070, - [1080] = 1072, - [1081] = 1067, - [1082] = 1069, - [1083] = 900, + [1073] = 1073, + [1074] = 1062, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1062, + [1079] = 1079, + [1080] = 1062, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 1088, - [1091] = 1089, - [1092] = 1088, - [1093] = 1093, - [1094] = 1089, - [1095] = 1095, + [1090] = 1090, + [1091] = 1068, + [1092] = 1092, + [1093] = 1060, + [1094] = 1094, + [1095] = 1060, [1096] = 1096, - [1097] = 1089, + [1097] = 1097, [1098] = 1098, [1099] = 1099, [1100] = 1100, @@ -3760,66 +3816,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1107, - [1109] = 1107, + [1108] = 1108, + [1109] = 1109, [1110] = 1110, - [1111] = 1111, + [1111] = 1107, [1112] = 1112, - [1113] = 1113, - [1114] = 1107, - [1115] = 1115, - [1116] = 1116, + [1113] = 1105, + [1114] = 1114, + [1115] = 1105, + [1116] = 1104, [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, + [1118] = 1105, + [1119] = 1100, + [1120] = 1106, + [1121] = 1107, + [1122] = 1105, [1123] = 1123, - [1124] = 1124, + [1124] = 1106, [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, - [1129] = 1123, - [1130] = 1125, - [1131] = 1121, - [1132] = 1126, - [1133] = 1125, - [1134] = 1124, - [1135] = 1123, - [1136] = 1126, - [1137] = 1125, - [1138] = 1121, + [1126] = 920, + [1127] = 1110, + [1128] = 1107, + [1129] = 1125, + [1130] = 1130, + [1131] = 1131, + [1132] = 1106, + [1133] = 1106, + [1134] = 1125, + [1135] = 1125, + [1136] = 1107, + [1137] = 1137, + [1138] = 1125, [1139] = 1139, - [1140] = 1124, + [1140] = 1140, [1141] = 1141, - [1142] = 1121, - [1143] = 1123, - [1144] = 1124, - [1145] = 1126, - [1146] = 1146, + [1142] = 1142, + [1143] = 1142, + [1144] = 1144, + [1145] = 1144, + [1146] = 766, [1147] = 1147, - [1148] = 1147, + [1148] = 1148, [1149] = 1149, - [1150] = 1150, + [1150] = 1142, [1151] = 1151, [1152] = 1152, [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1147, + [1154] = 1144, + [1155] = 1144, + [1156] = 1156, [1157] = 1157, [1158] = 1158, [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 1147, - [1163] = 1163, + [1162] = 1162, + [1163] = 1139, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1167, + [1167] = 1142, [1168] = 1168, [1169] = 1169, [1170] = 1170, @@ -3827,254 +3883,254 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1172] = 1172, [1173] = 1173, [1174] = 1174, - [1175] = 1175, - [1176] = 1176, + [1175] = 1144, + [1176] = 1153, [1177] = 1177, [1178] = 1178, [1179] = 1179, - [1180] = 1180, + [1180] = 1147, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1184, + [1184] = 1141, [1185] = 1185, [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, + [1187] = 1161, + [1188] = 1156, + [1189] = 1151, [1190] = 1190, [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, + [1192] = 1149, + [1193] = 1181, + [1194] = 1178, + [1195] = 1185, + [1196] = 1140, + [1197] = 1164, [1198] = 1198, [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, + [1200] = 1174, + [1201] = 1157, + [1202] = 1152, + [1203] = 1183, + [1204] = 1165, + [1205] = 1169, + [1206] = 1173, + [1207] = 1171, + [1208] = 1162, + [1209] = 1199, + [1210] = 1158, + [1211] = 1177, + [1212] = 1198, [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1215, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, + [1214] = 1160, + [1215] = 766, + [1216] = 1213, + [1217] = 1217, + [1218] = 1170, + [1219] = 1168, + [1220] = 1159, + [1221] = 1166, + [1222] = 1199, [1223] = 1223, - [1224] = 1224, - [1225] = 1224, - [1226] = 1224, - [1227] = 1227, - [1228] = 1224, + [1224] = 1213, + [1225] = 1179, + [1226] = 1213, + [1227] = 1199, + [1228] = 1199, [1229] = 1229, - [1230] = 1224, - [1231] = 1222, + [1230] = 1230, + [1231] = 960, [1232] = 1232, [1233] = 1233, - [1234] = 1215, - [1235] = 1224, - [1236] = 1236, - [1237] = 1222, - [1238] = 1238, - [1239] = 1224, - [1240] = 1240, + [1234] = 1234, + [1235] = 1234, + [1236] = 1234, + [1237] = 1233, + [1238] = 1232, + [1239] = 1232, + [1240] = 1232, [1241] = 1241, [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1247, - [1248] = 1248, - [1249] = 1249, - [1250] = 1250, - [1251] = 1244, + [1243] = 1241, + [1244] = 1233, + [1245] = 1234, + [1246] = 1233, + [1247] = 1233, + [1248] = 1241, + [1249] = 1232, + [1250] = 1241, + [1251] = 1241, [1252] = 1252, [1253] = 1253, - [1254] = 1249, - [1255] = 1247, + [1254] = 1252, + [1255] = 1253, [1256] = 1256, - [1257] = 1257, + [1257] = 1253, [1258] = 1258, - [1259] = 1259, + [1259] = 1253, [1260] = 1260, [1261] = 1261, - [1262] = 1253, - [1263] = 1263, + [1262] = 1262, + [1263] = 1252, [1264] = 1264, [1265] = 1265, - [1266] = 1250, + [1266] = 1266, [1267] = 1267, - [1268] = 1259, + [1268] = 1268, [1269] = 1269, - [1270] = 1270, + [1270] = 1253, [1271] = 1271, - [1272] = 1272, + [1272] = 1252, [1273] = 1273, - [1274] = 1264, - [1275] = 1269, + [1274] = 1274, + [1275] = 1275, [1276] = 1276, - [1277] = 1277, - [1278] = 1272, + [1277] = 1276, + [1278] = 1278, [1279] = 1279, [1280] = 1280, [1281] = 1281, - [1282] = 1282, + [1282] = 1276, [1283] = 1283, - [1284] = 1284, + [1284] = 1276, [1285] = 1285, - [1286] = 1253, + [1286] = 1276, [1287] = 1287, - [1288] = 1280, + [1288] = 1288, [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1269, - [1293] = 1253, - [1294] = 1245, - [1295] = 1260, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 1298, - [1299] = 1299, + [1298] = 1296, + [1299] = 1292, [1300] = 1300, - [1301] = 1301, - [1302] = 1246, - [1303] = 1303, - [1304] = 1285, - [1305] = 1305, - [1306] = 1306, - [1307] = 1260, - [1308] = 1285, - [1309] = 1244, - [1310] = 1246, - [1311] = 1311, - [1312] = 1300, - [1313] = 1313, + [1301] = 1300, + [1302] = 1295, + [1303] = 1296, + [1304] = 1300, + [1305] = 1295, + [1306] = 1297, + [1307] = 1292, + [1308] = 1292, + [1309] = 1296, + [1310] = 1310, + [1311] = 1297, + [1312] = 1295, + [1313] = 1295, [1314] = 1314, - [1315] = 1265, - [1316] = 1264, - [1317] = 1272, - [1318] = 1318, - [1319] = 1319, - [1320] = 1244, - [1321] = 1249, - [1322] = 1285, - [1323] = 1260, - [1324] = 1247, - [1325] = 1241, - [1326] = 1272, - [1327] = 1264, + [1315] = 1292, + [1316] = 1297, + [1317] = 1317, + [1318] = 1296, + [1319] = 1297, + [1320] = 1300, + [1321] = 1300, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1323, [1328] = 1328, - [1329] = 1329, - [1330] = 1300, - [1331] = 1331, + [1329] = 1323, + [1330] = 1330, + [1331] = 1323, [1332] = 1332, [1333] = 1333, - [1334] = 1249, + [1334] = 1334, [1335] = 1335, - [1336] = 1336, - [1337] = 1247, + [1336] = 1323, + [1337] = 1337, [1338] = 1338, - [1339] = 1265, - [1340] = 1250, + [1339] = 1339, + [1340] = 1340, [1341] = 1341, [1342] = 1342, [1343] = 1343, [1344] = 1344, - [1345] = 1342, + [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, [1349] = 1349, [1350] = 1350, [1351] = 1351, - [1352] = 1347, + [1352] = 1352, [1353] = 1353, - [1354] = 1342, + [1354] = 1354, [1355] = 1355, [1356] = 1356, [1357] = 1357, [1358] = 1358, [1359] = 1359, - [1360] = 1350, + [1360] = 1360, [1361] = 1361, [1362] = 1362, - [1363] = 1362, + [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, [1367] = 1367, - [1368] = 1350, - [1369] = 1365, - [1370] = 1353, - [1371] = 1366, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1366, + [1375] = 1375, [1376] = 1376, [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1347, - [1381] = 1342, + [1380] = 1380, + [1381] = 1381, [1382] = 1382, - [1383] = 1350, - [1384] = 1366, - [1385] = 1367, - [1386] = 1365, - [1387] = 1362, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, [1388] = 1388, [1389] = 1389, - [1390] = 1353, - [1391] = 1367, - [1392] = 1347, - [1393] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, [1394] = 1394, - [1395] = 1365, + [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 1351, - [1399] = 1362, - [1400] = 1342, - [1401] = 1362, - [1402] = 1342, - [1403] = 1362, - [1404] = 1367, - [1405] = 1342, - [1406] = 1362, - [1407] = 1351, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1396, + [1402] = 1402, + [1403] = 1396, + [1404] = 1404, + [1405] = 1395, + [1406] = 1406, + [1407] = 1394, + [1408] = 1396, + [1409] = 1396, + [1410] = 1396, + [1411] = 1396, + [1412] = 1396, [1413] = 1413, [1414] = 1414, [1415] = 1415, [1416] = 1416, - [1417] = 1408, - [1418] = 1418, - [1419] = 1419, + [1417] = 1394, + [1418] = 1396, + [1419] = 1395, [1420] = 1420, - [1421] = 1414, - [1422] = 1413, + [1421] = 1421, + [1422] = 1422, [1423] = 1423, [1424] = 1424, [1425] = 1425, @@ -4082,193 +4138,434 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1427] = 1427, [1428] = 1428, [1429] = 1429, - [1430] = 1420, + [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, [1434] = 1434, - [1435] = 1410, + [1435] = 1435, [1436] = 1436, - [1437] = 1410, - [1438] = 1423, + [1437] = 1437, + [1438] = 1438, [1439] = 1423, [1440] = 1440, - [1441] = 1410, - [1442] = 1436, - [1443] = 1418, - [1444] = 1423, - [1445] = 1428, + [1441] = 1441, + [1442] = 1442, + [1443] = 1433, + [1444] = 1434, + [1445] = 1445, [1446] = 1446, - [1447] = 1410, - [1448] = 1436, - [1449] = 1436, - [1450] = 1423, + [1447] = 1447, + [1448] = 1421, + [1449] = 1449, + [1450] = 1450, [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1408, - [1455] = 1455, + [1452] = 1447, + [1453] = 1442, + [1454] = 1454, + [1455] = 1421, [1456] = 1456, [1457] = 1457, [1458] = 1458, - [1459] = 1459, - [1460] = 1425, - [1461] = 1431, + [1459] = 1454, + [1460] = 1423, + [1461] = 1461, [1462] = 1462, - [1463] = 603, - [1464] = 1434, - [1465] = 1433, + [1463] = 1463, + [1464] = 1464, + [1465] = 1429, [1466] = 1466, [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1451, + [1468] = 1436, + [1469] = 1462, + [1470] = 1435, [1471] = 1471, - [1472] = 1432, + [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1475, - [1476] = 1476, - [1477] = 1429, + [1475] = 1422, + [1476] = 1447, + [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, + [1479] = 1442, + [1480] = 1423, + [1481] = 1454, [1482] = 1482, - [1483] = 1427, - [1484] = 1484, - [1485] = 1485, - [1486] = 1468, - [1487] = 1487, + [1483] = 1436, + [1484] = 1435, + [1485] = 1466, + [1486] = 1486, + [1487] = 1425, [1488] = 1488, - [1489] = 1489, - [1490] = 1458, - [1491] = 1484, + [1489] = 1447, + [1490] = 1429, + [1491] = 1425, [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1420, - [1497] = 1497, - [1498] = 1436, - [1499] = 1426, - [1500] = 1415, - [1501] = 1440, - [1502] = 1415, - [1503] = 1503, - [1504] = 1482, + [1496] = 1421, + [1497] = 1422, + [1498] = 1498, + [1499] = 1442, + [1500] = 1454, + [1501] = 1501, + [1502] = 1502, + [1503] = 1425, + [1504] = 1504, [1505] = 1505, - [1506] = 1476, - [1507] = 1436, - [1508] = 1446, - [1509] = 1412, - [1510] = 1510, - [1511] = 1511, - [1512] = 1458, - [1513] = 1511, - [1514] = 1514, - [1515] = 1446, - [1516] = 1418, - [1517] = 1423, + [1506] = 1506, + [1507] = 1429, + [1508] = 1429, + [1509] = 1509, + [1510] = 1432, + [1511] = 1432, + [1512] = 1462, + [1513] = 1435, + [1514] = 1436, + [1515] = 1435, + [1516] = 1436, + [1517] = 1467, [1518] = 1518, - [1519] = 1452, - [1520] = 1453, - [1521] = 1458, - [1522] = 1475, - [1523] = 1423, - [1524] = 1419, - [1525] = 1418, - [1526] = 1459, - [1527] = 1446, - [1528] = 1415, - [1529] = 1436, - [1530] = 1484, - [1531] = 1487, - [1532] = 1412, + [1519] = 1519, + [1520] = 1423, + [1521] = 1466, + [1522] = 1466, + [1523] = 1462, + [1524] = 1524, + [1525] = 1440, + [1526] = 1526, + [1527] = 1462, + [1528] = 1528, + [1529] = 1425, + [1530] = 1447, + [1531] = 1421, + [1532] = 1532, [1533] = 1533, [1534] = 1534, - [1535] = 1468, - [1536] = 1475, - [1537] = 1511, - [1538] = 1433, - [1539] = 1539, - [1540] = 1433, - [1541] = 1428, - [1542] = 1495, + [1535] = 1535, + [1536] = 1536, + [1537] = 1533, + [1538] = 1538, + [1539] = 1532, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, [1543] = 1543, - [1544] = 1497, - [1545] = 1428, + [1544] = 1544, + [1545] = 1534, [1546] = 1546, - [1547] = 1440, - [1548] = 1425, - [1549] = 1452, - [1550] = 1453, - [1551] = 1456, - [1552] = 1410, - [1553] = 1427, - [1554] = 1459, - [1555] = 1429, - [1556] = 1414, - [1557] = 1413, + [1547] = 1547, + [1548] = 1540, + [1549] = 1538, + [1550] = 1550, + [1551] = 1535, + [1552] = 1540, + [1553] = 1553, + [1554] = 1533, + [1555] = 1555, + [1556] = 1556, + [1557] = 1547, [1558] = 1558, - [1559] = 1420, - [1560] = 1560, - [1561] = 1431, - [1562] = 1562, - [1563] = 1434, - [1564] = 602, + [1559] = 1532, + [1560] = 1538, + [1561] = 1547, + [1562] = 1535, + [1563] = 1547, + [1564] = 1564, [1565] = 1565, - [1566] = 1495, - [1567] = 1451, - [1568] = 1497, + [1566] = 1541, + [1567] = 1538, + [1568] = 1536, [1569] = 1569, - [1570] = 1456, - [1571] = 1440, - [1572] = 1452, - [1573] = 1452, - [1574] = 1452, - [1575] = 1457, - [1576] = 1410, - [1577] = 1408, + [1570] = 1534, + [1571] = 1534, + [1572] = 1542, + [1573] = 1535, + [1574] = 1574, + [1575] = 1533, + [1576] = 1540, + [1577] = 1532, [1578] = 1578, - [1579] = 1432, - [1580] = 1511, - [1581] = 1414, - [1582] = 1413, - [1583] = 1456, - [1584] = 1495, - [1585] = 1543, - [1586] = 1586, + [1579] = 1579, + [1580] = 1547, + [1581] = 1581, + [1582] = 1582, + [1583] = 1532, + [1584] = 1584, + [1585] = 1533, + [1586] = 1534, [1587] = 1587, - [1588] = 1497, + [1588] = 1588, [1589] = 1589, - [1590] = 1590, - [1591] = 1462, - [1592] = 1592, - [1593] = 1459, - [1594] = 1431, - [1595] = 1434, - [1596] = 1596, - [1597] = 1543, - [1598] = 1432, - [1599] = 1451, - [1600] = 1426, - [1601] = 1462, - [1602] = 1476, - [1603] = 1429, - [1604] = 1427, - [1605] = 1425, - [1606] = 1543, + [1590] = 1540, + [1591] = 1541, + [1592] = 1535, + [1593] = 1540, + [1594] = 1594, + [1595] = 1535, + [1596] = 1538, + [1597] = 1597, + [1598] = 1535, + [1599] = 1540, + [1600] = 1535, + [1601] = 1535, + [1602] = 1540, + [1603] = 1536, + [1604] = 1604, + [1605] = 1605, + [1606] = 1540, [1607] = 1607, - [1608] = 1487, - [1609] = 1462, + [1608] = 1608, + [1609] = 1609, [1610] = 1610, - [1611] = 1412, - [1612] = 1596, - [1613] = 1453, - [1614] = 1596, - [1615] = 1452, - [1616] = 1596, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 1608, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, + [1634] = 1608, + [1635] = 1635, + [1636] = 1628, + [1637] = 1627, + [1638] = 1607, + [1639] = 1622, + [1640] = 1640, + [1641] = 1624, + [1642] = 1642, + [1643] = 1613, + [1644] = 1632, + [1645] = 1624, + [1646] = 1642, + [1647] = 1613, + [1648] = 1648, + [1649] = 1624, + [1650] = 1642, + [1651] = 1613, + [1652] = 1652, + [1653] = 1624, + [1654] = 1642, + [1655] = 1613, + [1656] = 1656, + [1657] = 1657, + [1658] = 1658, + [1659] = 1619, + [1660] = 1660, + [1661] = 1627, + [1662] = 1662, + [1663] = 1628, + [1664] = 1664, + [1665] = 1665, + [1666] = 1642, + [1667] = 1607, + [1668] = 1668, + [1669] = 1669, + [1670] = 1660, + [1671] = 1621, + [1672] = 720, + [1673] = 1619, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, + [1677] = 719, + [1678] = 1610, + [1679] = 1618, + [1680] = 1616, + [1681] = 1624, + [1682] = 1614, + [1683] = 1683, + [1684] = 1621, + [1685] = 1685, + [1686] = 1613, + [1687] = 1609, + [1688] = 1688, + [1689] = 1689, + [1690] = 1656, + [1691] = 1617, + [1692] = 1692, + [1693] = 1692, + [1694] = 1611, + [1695] = 1652, + [1696] = 1611, + [1697] = 1688, + [1698] = 1698, + [1699] = 1609, + [1700] = 1700, + [1701] = 1701, + [1702] = 1700, + [1703] = 1698, + [1704] = 1635, + [1705] = 1613, + [1706] = 1706, + [1707] = 1665, + [1708] = 1617, + [1709] = 1642, + [1710] = 1618, + [1711] = 1632, + [1712] = 1712, + [1713] = 1624, + [1714] = 1669, + [1715] = 1610, + [1716] = 1716, + [1717] = 1717, + [1718] = 1622, + [1719] = 1608, + [1720] = 1656, + [1721] = 1625, + [1722] = 1657, + [1723] = 1658, + [1724] = 1616, + [1725] = 1614, + [1726] = 1628, + [1727] = 1727, + [1728] = 1728, + [1729] = 1662, + [1730] = 1730, + [1731] = 1717, + [1732] = 1688, + [1733] = 1624, + [1734] = 1669, + [1735] = 1632, + [1736] = 1609, + [1737] = 1688, + [1738] = 1689, + [1739] = 1739, + [1740] = 1740, + [1741] = 1741, + [1742] = 1652, + [1743] = 1611, + [1744] = 1617, + [1745] = 1698, + [1746] = 1746, + [1747] = 1700, + [1748] = 1692, + [1749] = 1749, + [1750] = 1635, + [1751] = 1751, + [1752] = 1657, + [1753] = 1658, + [1754] = 1689, + [1755] = 1656, + [1756] = 1756, + [1757] = 1662, + [1758] = 1642, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1618, + [1763] = 1627, + [1764] = 1689, + [1765] = 1607, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1660, + [1770] = 1770, + [1771] = 1698, + [1772] = 1621, + [1773] = 1700, + [1774] = 1619, + [1775] = 1665, + [1776] = 1635, + [1777] = 1692, + [1778] = 1657, + [1779] = 1658, + [1780] = 1665, + [1781] = 1625, + [1782] = 1782, + [1783] = 1662, + [1784] = 1685, + [1785] = 1622, + [1786] = 1642, + [1787] = 1613, + [1788] = 1788, + [1789] = 1657, + [1790] = 1616, + [1791] = 1791, + [1792] = 1614, + [1793] = 1728, + [1794] = 1712, + [1795] = 1698, + [1796] = 1614, + [1797] = 1700, + [1798] = 1616, + [1799] = 1669, + [1800] = 1635, + [1801] = 1657, + [1802] = 1657, + [1803] = 1657, + [1804] = 1657, + [1805] = 1610, + [1806] = 1806, + [1807] = 1613, + [1808] = 1619, + [1809] = 1621, + [1810] = 1622, + [1811] = 1811, + [1812] = 1625, + [1813] = 1717, + [1814] = 1628, + [1815] = 1806, + [1816] = 1816, + [1817] = 1717, + [1818] = 1716, + [1819] = 1624, + [1820] = 1820, + [1821] = 1749, + [1822] = 1660, + [1823] = 1608, + [1824] = 1609, + [1825] = 1688, + [1826] = 1826, + [1827] = 1806, + [1828] = 1712, + [1829] = 1665, + [1830] = 1632, + [1831] = 1749, + [1832] = 1832, + [1833] = 1833, + [1834] = 1662, + [1835] = 1611, + [1836] = 1806, + [1837] = 1617, + [1838] = 1838, + [1839] = 1839, + [1840] = 1749, + [1841] = 1618, + [1842] = 1642, + [1843] = 1669, + [1844] = 1607, + [1845] = 1806, + [1846] = 1652, + [1847] = 1627, + [1848] = 1749, + [1849] = 1849, + [1850] = 1610, + [1851] = 1838, + [1852] = 1852, + [1853] = 1838, + [1854] = 1854, + [1855] = 1838, + [1856] = 1658, + [1857] = 1838, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -5926,830 +6223,6 @@ static inline bool sym_identifier_character_set_2(int32_t c) { } static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43646 - ? (c < 4213 - ? (c < 2738 - ? (c < 2036 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < 'a' - ? (c >= 'A' && c <= '_') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1749 - ? (c < 1488 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1514 || (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : c <= 1610) - : (c <= 1647 || (c >= 1649 && c <= 1747))))) - : (c <= 1749 || (c < 1808 - ? (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || c == 1791)) - : (c <= 1808 || (c < 1969 - ? (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957) - : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) - : (c <= 2037 || (c < 2486 - ? (c < 2308 - ? (c < 2112 - ? (c < 2074 - ? (c < 2048 - ? c == 2042 - : c <= 2069) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c >= 2208 && c <= 2249))))) - : (c <= 2361 || (c < 2437 - ? (c < 2392 - ? (c < 2384 - ? c == 2365 - : c <= 2384) - : (c <= 2401 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || c == 2482)))))) - : (c <= 2489 || (c < 2610 - ? (c < 2556 - ? (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545))) - : (c <= 2556 || (c < 2579 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576) - : (c <= 2600 || (c >= 2602 && c <= 2608))))) - : (c <= 2611 || (c < 2674 - ? (c < 2649 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2652 || c == 2654)) - : (c <= 2676 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3293 - ? (c < 2972 - ? (c < 2869 - ? (c < 2821 - ? (c < 2768 - ? (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (c < 2809 - ? (c >= 2784 && c <= 2785) - : c <= 2809))) - : (c <= 2828 || (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))))) - : (c <= 2873 || (c < 2947 - ? (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || c == 2929)) - : (c <= 2947 || (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))))))) - : (c <= 2972 || (c < 3160 - ? (c < 3077 - ? (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || c == 3133)))) - : (c <= 3162 || (c < 3214 - ? (c < 3200 - ? (c < 3168 - ? c == 3165 - : c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))) - : (c <= 3216 || (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || c == 3261)))))))) - : (c <= 3294 || (c < 3718 - ? (c < 3461 - ? (c < 3389 - ? (c < 3332 - ? (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386))) - : (c <= 3389 || (c < 3423 - ? (c < 3412 - ? c == 3406 - : c <= 3414) - : (c <= 3425 || (c >= 3450 && c <= 3455))))) - : (c <= 3478 || (c < 3585 - ? (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c >= 3520 && c <= 3526))) - : (c <= 3632 || (c < 3713 - ? (c < 3648 - ? c == 3634 - : c <= 3654) - : (c <= 3714 || c == 3716)))))) - : (c <= 3722 || (c < 3904 - ? (c < 3773 - ? (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3760 || c == 3762)) - : (c <= 3773 || (c < 3804 - ? (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782) - : (c <= 3807 || c == 3840)))) - : (c <= 3911 || (c < 4176 - ? (c < 4096 - ? (c < 3976 - ? (c >= 3913 && c <= 3948) - : c <= 3980) - : (c <= 4138 || c == 4159)) - : (c <= 4181 || (c < 4197 - ? (c < 4193 - ? (c >= 4186 && c <= 4189) - : c <= 4193) - : (c <= 4198 || (c >= 4206 && c <= 4208))))))))))))) - : (c <= 4225 || (c < 8182 - ? (c < 6400 - ? (c < 4888 - ? (c < 4704 - ? (c < 4348 - ? (c < 4295 - ? (c < 4256 - ? c == 4238 - : c <= 4293) - : (c <= 4295 || (c < 4304 - ? c == 4301 - : c <= 4346))) - : (c <= 4680 || (c < 4696 - ? (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694) - : (c <= 4696 || (c >= 4698 && c <= 4701))))) - : (c <= 4744 || (c < 4800 - ? (c < 4786 - ? (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784) - : (c <= 4789 || (c >= 4792 && c <= 4798))) - : (c <= 4800 || (c < 4824 - ? (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822) - : (c <= 4880 || (c >= 4882 && c <= 4885))))))) - : (c <= 4954 || (c < 5952 - ? (c < 5761 - ? (c < 5112 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109) - : (c <= 5117 || (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5905 || (c >= 5919 && c <= 5937))))) - : (c <= 5969 || (c < 6108 - ? (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))))) - : (c <= 6430 || (c < 7413 - ? (c < 7086 - ? (c < 6688 - ? (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c < 6656 - ? (c >= 6576 && c <= 6601) - : c <= 6678))) - : (c <= 6740 || (c < 6981 - ? (c < 6917 - ? c == 6823 - : c <= 6963) - : (c <= 6988 || (c >= 7043 && c <= 7072))))) - : (c <= 7087 || (c < 7296 - ? (c < 7245 - ? (c < 7168 - ? (c >= 7098 && c <= 7141) - : c <= 7203) - : (c <= 7247 || (c >= 7258 && c <= 7293))) - : (c <= 7304 || (c < 7401 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7404 || (c >= 7406 && c <= 7411))))))) - : (c <= 7414 || (c < 8031 - ? (c < 8008 - ? (c < 7680 - ? (c < 7424 - ? c == 7418 - : c <= 7615) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005))) - : (c <= 8013 || (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)))) - : (c <= 8061 || (c < 8134 - ? (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))))))) - : (c <= 8188 || (c < 12549 - ? (c < 11559 - ? (c < 8488 - ? (c < 8458 - ? (c < 8336 - ? (c < 8319 - ? c == 8305 - : c <= 8319) - : (c <= 8348 || (c < 8455 - ? c == 8450 - : c <= 8455))) - : (c <= 8467 || (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)))) - : (c <= 8488 || (c < 8544 - ? (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)) - : (c <= 8584 || (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))))))) - : (c <= 11559 || (c < 11728 - ? (c < 11688 - ? (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686))) - : (c <= 11694 || (c < 11712 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710) - : (c <= 11718 || (c >= 11720 && c <= 11726))))) - : (c <= 11734 || (c < 12344 - ? (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c >= 12337 && c <= 12341))) - : (c <= 12348 || (c < 12449 - ? (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447) - : (c <= 12538 || (c >= 12540 && c <= 12543))))))))) - : (c <= 12591 || (c < 43015 - ? (c < 42623 - ? (c < 42192 - ? (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c < 19968 - ? (c >= 13312 && c <= 19903) - : c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42960 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42954))) - : (c <= 42961 || (c < 42994 - ? (c < 42965 - ? c == 42963 - : c <= 42969) - : (c <= 43009 || (c >= 43011 && c <= 43013))))))) - : (c <= 43018 || (c < 43396 - ? (c < 43259 - ? (c < 43138 - ? (c < 43072 - ? (c >= 43020 && c <= 43042) - : c <= 43123) - : (c <= 43187 || (c >= 43250 && c <= 43255))) - : (c <= 43259 || (c < 43312 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : c <= 43301) - : (c <= 43334 || (c >= 43360 && c <= 43388))))) - : (c <= 43442 || (c < 43520 - ? (c < 43494 - ? (c < 43488 - ? c == 43471 - : c <= 43492) - : (c <= 43503 || (c >= 43514 && c <= 43518))) - : (c <= 43560 || (c < 43616 - ? (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595) - : (c <= 43638 || c == 43642)))))))))))))) - : (c <= 43695 || (c < 71236 - ? (c < 67424 - ? (c < 65149 - ? (c < 64112 - ? (c < 43793 - ? (c < 43739 - ? (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || (c < 43714 - ? c == 43712 - : c <= 43714))) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))) - : (c <= 64217 || (c < 64467 - ? (c < 64312 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c < 64298 - ? (c >= 64287 && c <= 64296) - : c <= 64310))) - : (c <= 64316 || (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))))) - : (c <= 64605 || (c < 65137 - ? (c < 64914 - ? (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911) - : (c <= 64967 || (c >= 65008 && c <= 65017))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || c == 65147)))))))) - : (c <= 65149 || (c < 66349 - ? (c < 65549 - ? (c < 65474 - ? (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))) - : (c <= 65574 || (c < 65664 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c >= 65616 && c <= 65629))) - : (c <= 65786 || (c < 66208 - ? (c < 66176 - ? (c >= 65856 && c <= 65908) - : c <= 66204) - : (c <= 66256 || (c >= 66304 && c <= 66335))))))) - : (c <= 66378 || (c < 66928 - ? (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66421) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66816 - ? (c < 66776 - ? (c >= 66736 && c <= 66771) - : c <= 66811) - : (c <= 66855 || (c >= 66864 && c <= 66915))))) - : (c <= 66938 || (c < 66979 - ? (c < 66964 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962) - : (c <= 66965 || (c >= 66967 && c <= 66977))) - : (c <= 66993 || (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) - : (c <= 67431 || (c < 69635 - ? (c < 68121 - ? (c < 67712 - ? (c < 67594 - ? (c < 67506 - ? (c < 67463 - ? (c >= 67456 && c <= 67461) - : c <= 67504) - : (c <= 67514 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c >= 67680 && c <= 67702))))) - : (c <= 67742 || (c < 67968 - ? (c < 67840 - ? (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829) - : (c <= 67861 || (c >= 67872 && c <= 67897))) - : (c <= 68023 || (c < 68112 - ? (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68096) - : (c <= 68115 || (c >= 68117 && c <= 68119))))))) - : (c <= 68149 || (c < 68800 - ? (c < 68416 - ? (c < 68288 - ? (c < 68224 - ? (c >= 68192 && c <= 68220) - : c <= 68252) - : (c <= 68295 || (c < 68352 - ? (c >= 68297 && c <= 68324) - : c <= 68405))) - : (c <= 68437 || (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))))) - : (c <= 68850 || (c < 69415 - ? (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))) - : (c <= 69415 || (c < 69552 - ? (c < 69488 - ? (c >= 69424 && c <= 69445) - : c <= 69505) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69687 || (c < 70303 - ? (c < 70081 - ? (c < 69956 - ? (c < 69763 - ? (c < 69749 - ? (c >= 69745 && c <= 69746) - : c <= 69749) - : (c <= 69807 || (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926))) - : (c <= 69956 || (c < 70006 - ? (c < 69968 - ? c == 69959 - : c <= 70002) - : (c <= 70006 || (c >= 70019 && c <= 70066))))) - : (c <= 70084 || (c < 70207 - ? (c < 70144 - ? (c < 70108 - ? c == 70106 - : c <= 70108) - : (c <= 70161 || (c >= 70163 && c <= 70187))) - : (c <= 70208 || (c < 70282 - ? (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280) - : (c <= 70285 || (c >= 70287 && c <= 70301))))))) - : (c <= 70312 || (c < 70493 - ? (c < 70442 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70320 && c <= 70366) - : c <= 70412) - : (c <= 70416 || (c >= 70419 && c <= 70440))) - : (c <= 70448 || (c < 70461 - ? (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457) - : (c <= 70461 || c == 70480)))) - : (c <= 70497 || (c < 70852 - ? (c < 70751 - ? (c < 70727 - ? (c >= 70656 && c <= 70708) - : c <= 70730) - : (c <= 70753 || (c >= 70784 && c <= 70831))) - : (c <= 70853 || (c < 71128 - ? (c < 71040 - ? c == 70855 - : c <= 71086) - : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) - : (c <= 71236 || (c < 119973 - ? (c < 73728 - ? (c < 72272 - ? (c < 71960 - ? (c < 71840 - ? (c < 71424 - ? (c < 71352 - ? (c >= 71296 && c <= 71338) - : c <= 71352) - : (c <= 71450 || (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723))) - : (c <= 71903 || (c < 71948 - ? (c < 71945 - ? (c >= 71935 && c <= 71942) - : c <= 71945) - : (c <= 71955 || (c >= 71957 && c <= 71958))))) - : (c <= 71983 || (c < 72161 - ? (c < 72096 - ? (c < 72001 - ? c == 71999 - : c <= 72001) - : (c <= 72103 || (c >= 72106 && c <= 72144))) - : (c <= 72161 || (c < 72203 - ? (c < 72192 - ? c == 72163 - : c <= 72192) - : (c <= 72242 || c == 72250)))))) - : (c <= 72272 || (c < 73030 - ? (c < 72768 - ? (c < 72368 - ? (c < 72349 - ? (c >= 72284 && c <= 72329) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72750))) - : (c <= 72768 || (c < 72968 - ? (c < 72960 - ? (c >= 72818 && c <= 72847) - : c <= 72966) - : (c <= 72969 || (c >= 72971 && c <= 73008))))) - : (c <= 73030 || (c < 73440 - ? (c < 73066 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : c <= 73064) - : (c <= 73097 || c == 73112)) - : (c <= 73458 || (c < 73490 - ? (c < 73476 - ? c == 73474 - : c <= 73488) - : (c <= 73523 || c == 73648)))))))) - : (c <= 74649 || (c < 94208 - ? (c < 92928 - ? (c < 82944 - ? (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c < 78913 - ? (c >= 77824 && c <= 78895) - : c <= 78918))) - : (c <= 83526 || (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))))) - : (c <= 92975 || (c < 93952 - ? (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))) - : (c <= 94026 || (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)))))) - : (c <= 100343 || (c < 110948 - ? (c < 110589 - ? (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))) - : (c <= 110590 || (c < 110928 - ? (c < 110898 - ? (c >= 110592 && c <= 110882) - : c <= 110898) - : (c <= 110930 || c == 110933)))) - : (c <= 110951 || (c < 113808 - ? (c < 113776 - ? (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))) - : (c <= 113817 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 126464 - ? (c < 120656 - ? (c < 120128 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c >= 120123 && c <= 120126))))) - : (c <= 120132 || (c < 120514 - ? (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c >= 120488 && c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 123536 - ? (c < 122661 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654))) - : (c <= 122666 || (c < 123191 - ? (c < 123136 - ? (c >= 122928 && c <= 122989) - : c <= 123180) - : (c <= 123197 || c == 123214)))) - : (c <= 123565 || (c < 124909 - ? (c < 124896 - ? (c < 124112 - ? (c >= 123584 && c <= 123627) - : c <= 124139) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173791) - : (c <= 177977 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { return (c < 43642 ? (c < 4206 ? (c < 2730 @@ -7575,287 +7048,222 @@ static inline bool sym_identifier_character_set_4(int32_t c) { : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43785 - ? (c < 3804 - ? (c < 2759 - ? (c < 2048 - ? (c < 1155 - ? (c < 736 - ? (c < 183 - ? (c < 'a' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : (c <= 'Z' || c == '_')) - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 183 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721))))) - : (c <= 740 || (c < 895 - ? (c < 768 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 910 - ? (c < 908 - ? (c >= 902 && c <= 906) - : c <= 908) - : (c <= 929 || (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153))))))) - : (c <= 1159 || (c < 1552 - ? (c < 1471 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469))) - : (c <= 1471 || (c < 1479 - ? (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477) - : (c <= 1479 || (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522))))) - : (c <= 1562 || (c < 1791 - ? (c < 1749 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747) - : (c <= 1756 || (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788))) - : (c <= 1791 || (c < 1984 +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 43646 + ? (c < 4213 + ? (c < 2738 + ? (c < 2036 + ? (c < 931 + ? (c < 748 + ? (c < 192 + ? (c < 170 + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 'z') + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1749 + ? (c < 1488 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1514 || (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))))) + : (c <= 1749 || (c < 1808 + ? (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1969 ? (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969) - : (c <= 2037 || (c < 2045 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) + : (c <= 2037 || (c < 2486 + ? (c < 2308 + ? (c < 2112 + ? (c < 2074 + ? (c < 2048 ? c == 2042 - : c <= 2045))))))))) - : (c <= 2093 || (c < 2561 - ? (c < 2474 - ? (c < 2275 - ? (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2139) - : c <= 2154) - : (c <= 2183 || (c < 2200 - ? (c >= 2185 && c <= 2190) - : c <= 2273))) - : (c <= 2403 || (c < 2437 - ? (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2435) - : (c <= 2444 || (c < 2451 + : c <= 2069) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))))) + : (c <= 2361 || (c < 2437 + ? (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2474 + ? (c < 2451 ? (c >= 2447 && c <= 2448) - : c <= 2472))))) - : (c <= 2480 || (c < 2519 - ? (c < 2492 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2500 || (c < 2507 - ? (c >= 2503 && c <= 2504) - : c <= 2510))) - : (c <= 2519 || (c < 2534 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2531) - : (c <= 2545 || (c < 2558 - ? c == 2556 - : c <= 2558))))))) - : (c <= 2563 || (c < 2641 - ? (c < 2613 - ? (c < 2579 + : c <= 2472) + : (c <= 2480 || c == 2482)))))) + : (c <= 2489 || (c < 2610 + ? (c < 2556 + ? (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545))) + : (c <= 2556 || (c < 2579 ? (c < 2575 ? (c >= 2565 && c <= 2570) : c <= 2576) - : (c <= 2600 || (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611))) - : (c <= 2614 || (c < 2622 - ? (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620) - : (c <= 2626 || (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637))))) - : (c <= 2641 || (c < 2703 - ? (c < 2662 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654) - : (c <= 2677 || (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701))) - : (c <= 2705 || (c < 2738 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736) - : (c <= 2739 || (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757))))))))))) - : (c <= 2761 || (c < 3200 - ? (c < 2969 - ? (c < 2876 + : (c <= 2600 || (c >= 2602 && c <= 2608))))) + : (c <= 2611 || (c < 2674 + ? (c < 2649 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2652 || c == 2654)) + : (c <= 2676 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3293 + ? (c < 2972 + ? (c < 2869 ? (c < 2821 - ? (c < 2790 - ? (c < 2768 - ? (c >= 2763 && c <= 2765) - : (c <= 2768 || (c >= 2784 && c <= 2787))) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) + ? (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c < 2809 + ? (c >= 2784 && c <= 2785) + : c <= 2809))) : (c <= 2828 || (c < 2858 ? (c < 2835 ? (c >= 2831 && c <= 2832) : c <= 2856) - : (c <= 2864 || (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873))))) - : (c <= 2884 || (c < 2918 - ? (c < 2901 - ? (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893) - : (c <= 2903 || (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915))) - : (c <= 2927 || (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))))))) - : (c <= 2970 || (c < 3072 - ? (c < 3006 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))) - : (c <= 3010 || (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))))) - : (c <= 3084 || (c < 3146 - ? (c < 3114 + : (c <= 2864 || (c >= 2866 && c <= 2867))))) + : (c <= 2873 || (c < 2947 + ? (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)) + : (c <= 2947 || (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))))))) + : (c <= 2972 || (c < 3160 + ? (c < 3077 + ? (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024))) + : (c <= 3084 || (c < 3114 ? (c < 3090 ? (c >= 3086 && c <= 3088) : c <= 3112) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))) - : (c <= 3149 || (c < 3165 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3165 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))))))))) - : (c <= 3203 || (c < 3461 - ? (c < 3302 - ? (c < 3260 - ? (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))) - : (c <= 3268 || (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299))))) - : (c <= 3311 || (c < 3402 - ? (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3315) - : c <= 3340) - : (c <= 3344 || (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400))) - : (c <= 3406 || (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))))))) - : (c <= 3478 || (c < 3648 - ? (c < 3535 + : (c <= 3129 || c == 3133)))) + : (c <= 3162 || (c < 3214 + ? (c < 3200 + ? (c < 3168 + ? c == 3165 + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))) + : (c <= 3216 || (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)))))))) + : (c <= 3294 || (c < 3718 + ? (c < 3461 + ? (c < 3389 + ? (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386))) + : (c <= 3389 || (c < 3423 + ? (c < 3412 + ? c == 3406 + : c <= 3414) + : (c <= 3425 || (c >= 3450 && c <= 3455))))) + : (c <= 3478 || (c < 3585 ? (c < 3517 ? (c < 3507 ? (c >= 3482 && c <= 3505) : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))) - : (c <= 3540 || (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))))) - : (c <= 3662 || (c < 3749 - ? (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747))) - : (c <= 3749 || (c < 3782 - ? (c < 3776 - ? (c >= 3751 && c <= 3773) - : c <= 3780) - : (c <= 3782 || (c < 3792 - ? (c >= 3784 && c <= 3790) - : c <= 3801))))))))))))) - : (c <= 3807 || (c < 8064 - ? (c < 5998 - ? (c < 4746 - ? (c < 4096 - ? (c < 3902 - ? (c < 3893 - ? (c < 3864 - ? c == 3840 - : (c <= 3865 || (c >= 3872 && c <= 3881))) - : (c <= 3893 || (c < 3897 - ? c == 3895 - : c <= 3897))) - : (c <= 3911 || (c < 3974 - ? (c < 3953 + : (c <= 3517 || (c >= 3520 && c <= 3526))) + : (c <= 3632 || (c < 3713 + ? (c < 3648 + ? c == 3634 + : c <= 3654) + : (c <= 3714 || c == 3716)))))) + : (c <= 3722 || (c < 3904 + ? (c < 3773 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3760 || c == 3762)) + : (c <= 3773 || (c < 3804 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3807 || c == 3840)))) + : (c <= 3911 || (c < 4176 + ? (c < 4096 + ? (c < 3976 ? (c >= 3913 && c <= 3948) - : c <= 3972) - : (c <= 3991 || (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038))))) - : (c <= 4169 || (c < 4348 + : c <= 3980) + : (c <= 4138 || c == 4159)) + : (c <= 4181 || (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c >= 4206 && c <= 4208))))))))))))) + : (c <= 4225 || (c < 8182 + ? (c < 6400 + ? (c < 4888 + ? (c < 4704 + ? (c < 4348 ? (c < 4295 ? (c < 4256 - ? (c >= 4176 && c <= 4253) + ? c == 4238 : c <= 4293) : (c <= 4295 || (c < 4304 ? c == 4301 @@ -7864,93 +7272,75 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 4688 ? (c >= 4682 && c <= 4685) : c <= 4694) - : (c <= 4696 || (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744))))))) - : (c <= 4749 || (c < 4992 - ? (c < 4808 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))) - : (c <= 4822 || (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c < 4969 - ? (c >= 4957 && c <= 4959) - : c <= 4977))))) - : (c <= 5007 || (c < 5792 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5909) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))))))) - : (c <= 6000 || (c < 6823 - ? (c < 6432 - ? (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 - ? (c < 6176 - ? (c >= 6159 && c <= 6169) - : c <= 6264) - : (c <= 6314 || (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430))))) - : (c <= 6443 || (c < 6608 - ? (c < 6512 - ? (c < 6470 - ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809))))))) - : (c <= 6823 || (c < 7357 - ? (c < 7040 - ? (c < 6912 - ? (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6862) - : (c <= 6988 || (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 - ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354))))) - : (c <= 7359 || (c < 8008 - ? (c < 7424 - ? (c < 7380 - ? (c >= 7376 && c <= 7378) - : c <= 7418) + : (c <= 4696 || (c >= 4698 && c <= 4701))))) + : (c <= 4744 || (c < 4800 + ? (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c >= 4882 && c <= 4885))))))) + : (c <= 4954 || (c < 5952 + ? (c < 5761 + ? (c < 5112 + ? (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109) + : (c <= 5117 || (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))))) + : (c <= 5969 || (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))))) + : (c <= 6430 || (c < 7413 + ? (c < 7086 + ? (c < 6688 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678))) + : (c <= 6740 || (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))))) + : (c <= 7087 || (c < 7296 + ? (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))) + : (c <= 7304 || (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c >= 7406 && c <= 7411))))))) + : (c <= 7414 || (c < 8031 + ? (c < 8008 + ? (c < 7680 + ? (c < 7424 + ? c == 7418 + : c <= 7615) : (c <= 7957 || (c < 7968 ? (c >= 7960 && c <= 7965) : c <= 8005))) @@ -7958,2535 +7348,3756 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 8025 ? (c >= 8016 && c <= 8023) : c <= 8025) - : (c <= 8027 || (c < 8031 - ? c == 8029 - : c <= 8061))))))))))) - : (c <= 8116 || (c < 12321 - ? (c < 8488 - ? (c < 8319 - ? (c < 8160 - ? (c < 8134 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8150 + : (c <= 8027 || c == 8029)))) + : (c <= 8061 || (c < 8134 + ? (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 ? (c >= 8144 && c <= 8147) - : c <= 8155))) - : (c <= 8172 || (c < 8255 - ? (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188) - : (c <= 8256 || (c < 8305 - ? c == 8276 - : c <= 8305))))) - : (c <= 8319 || (c < 8455 - ? (c < 8417 - ? (c < 8400 - ? (c >= 8336 && c <= 8348) - : c <= 8412) - : (c <= 8417 || (c < 8450 - ? (c >= 8421 && c <= 8432) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || (c < 8486 - ? c == 8484 - : c <= 8486))))))) - : (c <= 8488 || (c < 11631 - ? (c < 11264 + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))))))) + : (c <= 8188 || (c < 12549 + ? (c < 11559 + ? (c < 8488 + ? (c < 8458 + ? (c < 8336 + ? (c < 8319 + ? c == 8305 + : c <= 8319) + : (c <= 8348 || (c < 8455 + ? c == 8450 + : c <= 8455))) + : (c <= 8467 || (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)))) + : (c <= 8488 || (c < 8544 ? (c < 8517 ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || (c < 8544 - ? c == 8526 - : c <= 8584))) - : (c <= 11492 || (c < 11559 - ? (c < 11520 - ? (c >= 11499 && c <= 11507) - : c <= 11557) - : (c <= 11559 || (c < 11568 + : (c <= 8521 || c == 8526)) + : (c <= 8584 || (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))))))) + : (c <= 11559 || (c < 11728 + ? (c < 11688 + ? (c < 11631 + ? (c < 11568 ? c == 11565 - : c <= 11623))))) - : (c <= 11631 || (c < 11712 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11647 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c < 11704 + : c <= 11623) + : (c <= 11631 || (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686))) + : (c <= 11694 || (c < 11712 + ? (c < 11704 ? (c >= 11696 && c <= 11702) - : c <= 11710))) - : (c <= 11718 || (c < 11736 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734) - : (c <= 11742 || (c < 12293 - ? (c >= 11744 && c <= 11775) - : c <= 12295))))))))) - : (c <= 12335 || (c < 42963 - ? (c < 13312 - ? (c < 12449 - ? (c < 12353 - ? (c < 12344 - ? (c >= 12337 && c <= 12341) - : c <= 12348) - : (c <= 12438 || (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447))) - : (c <= 12538 || (c < 12593 - ? (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))))) - : (c <= 19903 || (c < 42612 - ? (c < 42240 - ? (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607))) - : (c <= 42621 || (c < 42786 + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))))) + : (c <= 11734 || (c < 12344 + ? (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))) + : (c <= 12348 || (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c >= 12540 && c <= 12543))))))))) + : (c <= 12591 || (c < 43015 + ? (c < 42623 + ? (c < 42192 + ? (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42960 + ? (c < 42786 ? (c < 42775 - ? (c >= 42623 && c <= 42737) + ? (c >= 42656 && c <= 42735) : c <= 42783) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))))))) - : (c <= 42963 || (c < 43392 - ? (c < 43216 - ? (c < 43052 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43047) - : (c <= 43052 || (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205))) - : (c <= 43225 || (c < 43261 - ? (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259) - : (c <= 43309 || (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388))))) - : (c <= 43456 || (c < 43616 - ? (c < 43520 + : (c <= 42888 || (c >= 42891 && c <= 42954))) + : (c <= 42961 || (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c >= 43011 && c <= 43013))))))) + : (c <= 43018 || (c < 43396 + ? (c < 43259 + ? (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c >= 43250 && c <= 43255))) + : (c <= 43259 || (c < 43312 + ? (c < 43274 + ? (c >= 43261 && c <= 43262) + : c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))))) + : (c <= 43442 || (c < 43520 + ? (c < 43494 ? (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518) - : (c <= 43574 || (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609))) - : (c <= 43638 || (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))))))))))))))) - : (c <= 43790 || (c < 71960 - ? (c < 67840 - ? (c < 65549 - ? (c < 64848 - ? (c < 64112 - ? (c < 44012 + ? c == 43471 + : c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))) + : (c <= 43560 || (c < 43616 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : c <= 43595) + : (c <= 43638 || c == 43642)))))))))))))) + : (c <= 43695 || (c < 71236 + ? (c < 67424 + ? (c < 65149 + ? (c < 64112 + ? (c < 43793 + ? (c < 43739 + ? (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || (c < 43714 + ? c == 43712 + : c <= 43714))) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 ? (c < 43824 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44010))) - : (c <= 44013 || (c < 55216 - ? (c < 44032 - ? (c >= 44016 && c <= 44025) - : c <= 55203) - : (c <= 55238 || (c < 63744 - ? (c >= 55243 && c <= 55291) - : c <= 64109))))) - : (c <= 64217 || (c < 64318 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))) + : (c <= 64217 || (c < 64467 + ? (c < 64312 ? (c < 64285 ? (c < 64275 ? (c >= 64256 && c <= 64262) : c <= 64279) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))) - : (c <= 64318 || (c < 64326 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324) - : (c <= 64433 || (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829))))))) - : (c <= 64911 || (c < 65149 - ? (c < 65101 - ? (c < 65024 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017) - : (c <= 65039 || (c < 65075 - ? (c >= 65056 && c <= 65071) - : c <= 65076))) - : (c <= 65103 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))))) - : (c <= 65149 || (c < 65382 - ? (c < 65313 - ? (c < 65296 + : (c <= 64285 || (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310))) + : (c <= 64316 || (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c >= 64326 && c <= 64433))))) + : (c <= 64605 || (c < 65137 + ? (c < 64914 + ? (c < 64848 + ? (c >= 64612 && c <= 64829) + : c <= 64911) + : (c <= 64967 || (c >= 65008 && c <= 65017))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || c == 65147)))))))) + : (c <= 65149 || (c < 66349 + ? (c < 65549 + ? (c < 65474 + ? (c < 65345 + ? (c < 65313 ? (c >= 65151 && c <= 65276) - : c <= 65305) - : (c <= 65338 || (c < 65345 - ? c == 65343 - : c <= 65370))) - : (c <= 65470 || (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))))))))) - : (c <= 65574 || (c < 66928 - ? (c < 66349 - ? (c < 65856 + : c <= 65338) + : (c <= 65370 || (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))) + : (c <= 65574 || (c < 65664 ? (c < 65599 ? (c < 65596 ? (c >= 65576 && c <= 65594) : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66208 ? (c < 66176 - ? c == 66045 + ? (c >= 65856 && c <= 65908) : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 + : (c <= 66256 || (c >= 66304 && c <= 66335))))))) + : (c <= 66378 || (c < 66928 + ? (c < 66560 ? (c < 66464 ? (c < 66432 - ? (c >= 66384 && c <= 66426) + ? (c >= 66384 && c <= 66421) : c <= 66461) : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915))))))) - : (c <= 66938 || (c < 67463 - ? (c < 66995 + : (c <= 66717 || (c < 66816 + ? (c < 66776 + ? (c >= 66736 && c <= 66771) + : c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))))) + : (c <= 66938 || (c < 66979 ? (c < 66964 ? (c < 66956 ? (c >= 66940 && c <= 66954) : c <= 66962) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))) - : (c <= 67001 || (c < 67392 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))))) - : (c <= 67504 || (c < 67644 - ? (c < 67592 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))))))))) - : (c <= 67861 || (c < 70163 - ? (c < 69291 - ? (c < 68288 - ? (c < 68117 - ? (c < 68096 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115))) - : (c <= 68119 || (c < 68159 - ? (c < 68152 - ? (c >= 68121 && c <= 68149) - : c <= 68154) - : (c <= 68159 || (c < 68224 + : (c <= 66965 || (c >= 66967 && c <= 66977))) + : (c <= 66993 || (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) + : (c <= 67431 || (c < 69635 + ? (c < 68121 + ? (c < 67712 + ? (c < 67594 + ? (c < 67506 + ? (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504) + : (c <= 67514 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c >= 67680 && c <= 67702))))) + : (c <= 67742 || (c < 67968 + ? (c < 67840 + ? (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68112 + ? (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096) + : (c <= 68115 || (c >= 68117 && c <= 68119))))))) + : (c <= 68149 || (c < 68800 + ? (c < 68416 + ? (c < 68288 + ? (c < 68224 ? (c >= 68192 && c <= 68220) - : c <= 68252))))) - : (c <= 68295 || (c < 68608 - ? (c < 68416 - ? (c < 68352 - ? (c >= 68297 && c <= 68326) - : c <= 68405) - : (c <= 68437 || (c < 68480 + : c <= 68252) + : (c <= 68295 || (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405))) + : (c <= 68437 || (c < 68608 + ? (c < 68480 ? (c >= 68448 && c <= 68466) - : c <= 68497))) - : (c <= 68680 || (c < 68864 - ? (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850) - : (c <= 68903 || (c < 69248 - ? (c >= 68912 && c <= 68921) - : c <= 69289))))))) - : (c <= 69292 || (c < 69840 - ? (c < 69552 - ? (c < 69415 - ? (c < 69373 - ? (c >= 69296 && c <= 69297) - : c <= 69404) - : (c <= 69415 || (c < 69488 - ? (c >= 69424 && c <= 69456) - : c <= 69509))) - : (c <= 69572 || (c < 69734 - ? (c < 69632 - ? (c >= 69600 && c <= 69622) - : c <= 69702) - : (c <= 69749 || (c < 69826 - ? (c >= 69759 && c <= 69818) - : c <= 69826))))) - : (c <= 69864 || (c < 70006 - ? (c < 69942 - ? (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))) - : (c <= 70006 || (c < 70094 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092) - : (c <= 70106 || (c < 70144 - ? c == 70108 - : c <= 70161))))))))) - : (c <= 70199 || (c < 70656 - ? (c < 70419 - ? (c < 70303 - ? (c < 70280 - ? (c < 70272 - ? (c >= 70206 && c <= 70209) - : c <= 70278) - : (c <= 70280 || (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301))) - : (c <= 70312 || (c < 70400 - ? (c < 70384 - ? (c >= 70320 && c <= 70378) - : c <= 70393) - : (c <= 70403 || (c < 70415 - ? (c >= 70405 && c <= 70412) - : c <= 70416))))) - : (c <= 70440 || (c < 70475 - ? (c < 70453 - ? (c < 70450 - ? (c >= 70442 && c <= 70448) - : c <= 70451) - : (c <= 70457 || (c < 70471 - ? (c >= 70459 && c <= 70468) - : c <= 70472))) - : (c <= 70477 || (c < 70493 - ? (c < 70487 - ? c == 70480 - : c <= 70487) - : (c <= 70499 || (c < 70512 - ? (c >= 70502 && c <= 70508) - : c <= 70516))))))) - : (c <= 70730 || (c < 71296 - ? (c < 71040 - ? (c < 70784 - ? (c < 70750 - ? (c >= 70736 && c <= 70745) - : c <= 70753) - : (c <= 70853 || (c < 70864 + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))))) + : (c <= 68850 || (c < 69415 + ? (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))) + : (c <= 69415 || (c < 69552 + ? (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69687 || (c < 70303 + ? (c < 70081 + ? (c < 69956 + ? (c < 69763 + ? (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749) + : (c <= 69807 || (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926))) + : (c <= 69956 || (c < 70006 + ? (c < 69968 + ? c == 69959 + : c <= 70002) + : (c <= 70006 || (c >= 70019 && c <= 70066))))) + : (c <= 70084 || (c < 70207 + ? (c < 70144 + ? (c < 70108 + ? c == 70106 + : c <= 70108) + : (c <= 70161 || (c >= 70163 && c <= 70187))) + : (c <= 70208 || (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c >= 70287 && c <= 70301))))))) + : (c <= 70312 || (c < 70493 + ? (c < 70442 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412) + : (c <= 70416 || (c >= 70419 && c <= 70440))) + : (c <= 70448 || (c < 70461 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70461 || c == 70480)))) + : (c <= 70497 || (c < 70852 + ? (c < 70751 + ? (c < 70727 + ? (c >= 70656 && c <= 70708) + : c <= 70730) + : (c <= 70753 || (c >= 70784 && c <= 70831))) + : (c <= 70853 || (c < 71128 + ? (c < 71040 ? c == 70855 - : c <= 70873))) - : (c <= 71093 || (c < 71168 - ? (c < 71128 - ? (c >= 71096 && c <= 71104) - : c <= 71133) - : (c <= 71232 || (c < 71248 - ? c == 71236 - : c <= 71257))))) - : (c <= 71352 || (c < 71680 - ? (c < 71453 - ? (c < 71424 - ? (c >= 71360 && c <= 71369) - : c <= 71450) - : (c <= 71467 || (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494))) - : (c <= 71738 || (c < 71945 - ? (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942) - : (c <= 71945 || (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958))))))))))))) - : (c <= 71989 || (c < 119995 - ? (c < 92784 - ? (c < 73023 - ? (c < 72704 - ? (c < 72163 + : c <= 71086) + : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) + : (c <= 71236 || (c < 119973 + ? (c < 73728 + ? (c < 72272 + ? (c < 71960 + ? (c < 71840 + ? (c < 71424 + ? (c < 71352 + ? (c >= 71296 && c <= 71338) + : c <= 71352) + : (c <= 71450 || (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723))) + : (c <= 71903 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c >= 71957 && c <= 71958))))) + : (c <= 71983 || (c < 72161 ? (c < 72096 - ? (c < 71995 - ? (c >= 71991 && c <= 71992) - : (c <= 72003 || (c >= 72016 && c <= 72025))) - : (c <= 72103 || (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161))) - : (c <= 72164 || (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72368 - ? c == 72349 - : c <= 72440))))) - : (c <= 72712 || (c < 72873 - ? (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 + ? (c < 72001 + ? c == 71999 + : c <= 72001) + : (c <= 72103 || (c >= 72106 && c <= 72144))) + : (c <= 72161 || (c < 72203 + ? (c < 72192 + ? c == 72163 + : c <= 72192) + : (c <= 72242 || c == 72250)))))) + : (c <= 72272 || (c < 73030 + ? (c < 72768 + ? (c < 72368 + ? (c < 72349 + ? (c >= 72284 && c <= 72329) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750))) + : (c <= 72768 || (c < 72968 + ? (c < 72960 ? (c >= 72818 && c <= 72847) - : c <= 72871))) - : (c <= 72886 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))))))) - : (c <= 73031 || (c < 73552 - ? (c < 73107 - ? (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c < 73104 - ? (c >= 73066 && c <= 73102) - : c <= 73105))) - : (c <= 73112 || (c < 73472 - ? (c < 73440 - ? (c >= 73120 && c <= 73129) - : c <= 73462) - : (c <= 73488 || (c < 73534 - ? (c >= 73490 && c <= 73530) - : c <= 73538))))) - : (c <= 73561 || (c < 77824 - ? (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))) - : (c <= 78895 || (c < 92160 - ? (c < 82944 - ? (c >= 78912 && c <= 78933) - : c <= 83526) - : (c <= 92728 || (c < 92768 - ? (c >= 92736 && c <= 92766) - : c <= 92777))))))))) - : (c <= 92862 || (c < 110928 - ? (c < 94095 - ? (c < 93008 - ? (c < 92912 - ? (c < 92880 - ? (c >= 92864 && c <= 92873) - : c <= 92909) - : (c <= 92916 || (c < 92992 - ? (c >= 92928 && c <= 92982) - : c <= 92995))) - : (c <= 93017 || (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c < 94031 - ? (c >= 93952 && c <= 94026) - : c <= 94087))))) - : (c <= 94111 || (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110589 - ? (c < 110581 - ? (c >= 110576 && c <= 110579) - : c <= 110587) - : (c <= 110590 || (c < 110898 + : c <= 72966) + : (c <= 72969 || (c >= 72971 && c <= 73008))))) + : (c <= 73030 || (c < 73440 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73097 || c == 73112)) + : (c <= 73458 || (c < 73490 + ? (c < 73476 + ? c == 73474 + : c <= 73488) + : (c <= 73523 || c == 73648)))))))) + : (c <= 74649 || (c < 94208 + ? (c < 92928 + ? (c < 82944 + ? (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c < 78913 + ? (c >= 77824 && c <= 78895) + : c <= 78918))) + : (c <= 83526 || (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))))) + : (c <= 92975 || (c < 93952 + ? (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))) + : (c <= 94026 || (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)))))) + : (c <= 100343 || (c < 110948 + ? (c < 110589 + ? (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 ? (c >= 110592 && c <= 110882) - : c <= 110898))))))) - : (c <= 110930 || (c < 119149 - ? (c < 113792 - ? (c < 110960 - ? (c < 110948 - ? c == 110933 - : c <= 110951) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788))) - : (c <= 113800 || (c < 118528 - ? (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822) - : (c <= 118573 || (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145))))) - : (c <= 119154 || (c < 119894 - ? (c < 119210 - ? (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179) - : (c <= 119213 || (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892))) - : (c <= 119964 || (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))))))))))) - : (c <= 119995 || (c < 124912 - ? (c < 121403 - ? (c < 120514 - ? (c < 120123 - ? (c < 120077 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : (c <= 120069 || (c >= 120071 && c <= 120074))) - : (c <= 120084 || (c < 120094 - ? (c >= 120086 && c <= 120092) - : c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))))) - : (c <= 120538 || (c < 120688 - ? (c < 120598 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 ? (c < 120572 ? (c >= 120540 && c <= 120570) : c <= 120596) - : (c <= 120628 || (c < 120656 - ? (c >= 120630 && c <= 120654) - : c <= 120686))) - : (c <= 120712 || (c < 120772 - ? (c < 120746 - ? (c >= 120714 && c <= 120744) - : c <= 120770) - : (c <= 120779 || (c < 121344 - ? (c >= 120782 && c <= 120831) - : c <= 121398))))))) - : (c <= 121452 || (c < 122928 + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 ? (c < 122661 - ? (c < 121499 - ? (c < 121476 - ? c == 121461 - : c <= 121476) - : (c <= 121503 || (c < 122624 - ? (c >= 121505 && c <= 121519) + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) : c <= 122654))) - : (c <= 122666 || (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))))) - : (c <= 122989 || (c < 123536 - ? (c < 123184 + : (c <= 122666 || (c < 123191 ? (c < 123136 - ? c == 123023 + ? (c >= 122928 && c <= 122989) : c <= 123180) - : (c <= 123197 || (c < 123214 - ? (c >= 123200 && c <= 123209) - : c <= 123214))) - : (c <= 123566 || (c < 124896 + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 ? (c < 124112 - ? (c >= 123584 && c <= 123641) - : c <= 124153) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 + ? (c < 173824 + ? (c < 131072 ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177977) - : c <= 178205))) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 ? (c >= 183984 && c <= 191456) : c <= 195101) - : (c <= 201546 || (c < 917760 - ? (c >= 201552 && c <= 205743) - : c <= 917999))))))))))))))))); + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(84); - if (lookahead == '!') ADVANCE(139); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '#') ADVANCE(52); - if (lookahead == '%') ADVANCE(156); - if (lookahead == '&') ADVANCE(165); - if (lookahead == '\'') ADVANCE(226); - if (lookahead == '(') ADVANCE(89); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '+') ADVANCE(147); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(211); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(168); - if (lookahead == '?') ADVANCE(190); - if (lookahead == 'L') ADVANCE(247); - if (lookahead == 'U') ADVANCE(249); - if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(79) - if (lookahead == ']') ADVANCE(186); - if (lookahead == '^') ADVANCE(162); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(251); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '|') ADVANCE(159); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 1: - if (lookahead == '\n') SKIP(28) - END_STATE(); - case 2: - if (lookahead == '\n') SKIP(28) - if (lookahead == '\r') SKIP(1) - END_STATE(); - case 3: - if (lookahead == '\n') SKIP(29) - END_STATE(); - case 4: - if (lookahead == '\n') SKIP(29) - if (lookahead == '\r') SKIP(3) - END_STATE(); - case 5: - if (lookahead == '\n') SKIP(27) - END_STATE(); - case 6: - if (lookahead == '\n') SKIP(27) - if (lookahead == '\r') SKIP(5) - END_STATE(); - case 7: - if (lookahead == '\n') SKIP(33) - END_STATE(); - case 8: - if (lookahead == '\n') SKIP(33) - if (lookahead == '\r') SKIP(7) - END_STATE(); - case 9: - if (lookahead == '\n') SKIP(34) - END_STATE(); - case 10: - if (lookahead == '\n') SKIP(34) - if (lookahead == '\r') SKIP(9) - END_STATE(); - case 11: - if (lookahead == '\n') SKIP(32) - END_STATE(); - case 12: - if (lookahead == '\n') SKIP(32) - if (lookahead == '\r') SKIP(11) - END_STATE(); - case 13: - if (lookahead == '\n') SKIP(31) - END_STATE(); - case 14: - if (lookahead == '\n') SKIP(31) - if (lookahead == '\r') SKIP(13) - END_STATE(); - case 15: - if (lookahead == '\n') SKIP(30) - END_STATE(); - case 16: - if (lookahead == '\n') SKIP(30) - if (lookahead == '\r') SKIP(15) - END_STATE(); - case 17: - if (lookahead == '\n') SKIP(19) - END_STATE(); - case 18: - if (lookahead == '\n') SKIP(19) - if (lookahead == '\r') SKIP(17) - END_STATE(); - case 19: - if (lookahead == '\n') ADVANCE(86); - if (lookahead == '!') ADVANCE(46); - if (lookahead == '%') ADVANCE(155); - if (lookahead == '&') ADVANCE(164); - if (lookahead == '(') ADVANCE(137); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(146); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '/') ADVANCE(153); - if (lookahead == '<') ADVANCE(173); - if (lookahead == '=') ADVANCE(47); - if (lookahead == '>') ADVANCE(169); - if (lookahead == '\\') SKIP(18) - if (lookahead == '^') ADVANCE(161); - if (lookahead == '|') ADVANCE(160); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(19) - END_STATE(); - case 20: - if (lookahead == '\n') SKIP(35) - END_STATE(); - case 21: - if (lookahead == '\n') SKIP(35) - if (lookahead == '\r') SKIP(20) - END_STATE(); - case 22: - if (lookahead == '\n') SKIP(36) - if (lookahead == '"') ADVANCE(235); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '\\') ADVANCE(23); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(239); - if (lookahead != 0) ADVANCE(240); - END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(242); - if (lookahead == '\r') ADVANCE(241); - if (lookahead == 'U') ADVANCE(76); - if (lookahead == 'u') ADVANCE(72); - if (lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (lookahead != 0) ADVANCE(241); - END_STATE(); - case 24: - if (lookahead == '\n') ADVANCE(87); - if (lookahead == '(') ADVANCE(89); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') ADVANCE(128); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(131); - END_STATE(); - case 25: - if (lookahead == '\n') ADVANCE(87); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') ADVANCE(128); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(131); - END_STATE(); - case 26: - if (lookahead == '\n') SKIP(44) - if (lookahead == '/') ADVANCE(229); - if (lookahead == '\\') ADVANCE(228); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(230); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(227); - END_STATE(); - case 27: - if (lookahead == '!') ADVANCE(139); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(156); - if (lookahead == '&') ADVANCE(165); - if (lookahead == '\'') ADVANCE(226); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '+') ADVANCE(147); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(205); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(211); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(168); - if (lookahead == '?') ADVANCE(190); - if (lookahead == 'L') ADVANCE(247); - if (lookahead == 'U') ADVANCE(249); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '\\') SKIP(6) - if (lookahead == ']') ADVANCE(186); - if (lookahead == '^') ADVANCE(162); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(251); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '|') ADVANCE(159); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 28: - if (lookahead == '!') ADVANCE(138); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '#') ADVANCE(52); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(226); - if (lookahead == '(') ADVANCE(137); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(148); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(211); - if (lookahead == ':') ADVANCE(45); - if (lookahead == ';') ADVANCE(178); - if (lookahead == 'L') ADVANCE(247); - if (lookahead == 'U') ADVANCE(249); - if (lookahead == '[') ADVANCE(50); - if (lookahead == '\\') SKIP(2) - if (lookahead == ']') ADVANCE(51); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(251); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 29: - if (lookahead == '!') ADVANCE(138); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(226); - if (lookahead == '(') ADVANCE(137); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(148); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(211); - if (lookahead == ';') ADVANCE(178); - if (lookahead == 'L') ADVANCE(247); - if (lookahead == 'U') ADVANCE(249); - if (lookahead == '[') ADVANCE(50); - if (lookahead == '\\') SKIP(4) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(251); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 30: - if (lookahead == '!') ADVANCE(138); - if (lookahead == '\'') ADVANCE(226); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '+') ADVANCE(150); - if (lookahead == '-') ADVANCE(145); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(211); - if (lookahead == 'L') ADVANCE(255); - if (lookahead == 'U') ADVANCE(256); - if (lookahead == '\\') SKIP(16) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(257); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 31: - if (lookahead == '!') ADVANCE(46); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '%') ADVANCE(156); - if (lookahead == '&') ADVANCE(165); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '+') ADVANCE(149); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '/') ADVANCE(154); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(168); - if (lookahead == '?') ADVANCE(190); - if (lookahead == 'L') ADVANCE(248); - if (lookahead == 'U') ADVANCE(250); - if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(14) - if (lookahead == ']') ADVANCE(186); - if (lookahead == '^') ADVANCE(162); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(252); - if (lookahead == '|') ADVANCE(159); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(31) - END_STATE(); - case 32: - if (lookahead == '!') ADVANCE(46); - if (lookahead == '#') ADVANCE(57); - if (lookahead == '%') ADVANCE(156); - if (lookahead == '&') ADVANCE(165); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '+') ADVANCE(149); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '/') ADVANCE(154); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(168); - if (lookahead == '?') ADVANCE(190); - if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(12) - if (lookahead == ']') ADVANCE(51); - if (lookahead == '^') ADVANCE(162); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(259); - if (lookahead == '|') ADVANCE(159); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(32) - END_STATE(); - case 33: - if (lookahead == '!') ADVANCE(46); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '%') ADVANCE(155); - if (lookahead == '&') ADVANCE(164); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '.') ADVANCE(42); - if (lookahead == '/') ADVANCE(153); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '<') ADVANCE(173); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(169); - if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(8) - if (lookahead == '^') ADVANCE(161); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(259); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '|') ADVANCE(160); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(33) - END_STATE(); - case 34: - if (lookahead == '!') ADVANCE(46); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '%') ADVANCE(156); - if (lookahead == '&') ADVANCE(165); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '+') ADVANCE(149); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '/') ADVANCE(154); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(168); - if (lookahead == '?') ADVANCE(190); - if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(10) - if (lookahead == ']') ADVANCE(186); - if (lookahead == '^') ADVANCE(162); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(259); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '|') ADVANCE(159); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(34) - END_STATE(); - case 35: - if (lookahead == '"') ADVANCE(235); - if (lookahead == '/') ADVANCE(37); - if (lookahead == '<') ADVANCE(48); - if (lookahead == 'L') ADVANCE(248); - if (lookahead == 'U') ADVANCE(250); - if (lookahead == '\\') SKIP(21) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(252); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(35) - END_STATE(); - case 36: - if (lookahead == '"') ADVANCE(235); - if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(23); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(36) - END_STATE(); - case 37: - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(261); - END_STATE(); - case 38: - if (lookahead == '*') ADVANCE(38); - if (lookahead == '/') ADVANCE(260); - if (lookahead != 0) ADVANCE(39); - END_STATE(); - case 39: - if (lookahead == '*') ADVANCE(38); - if (lookahead != 0) ADVANCE(39); - END_STATE(); - case 40: - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(209); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(210); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(218); - END_STATE(); - case 41: - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(212); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 42: - if (lookahead == '.') ADVANCE(43); - END_STATE(); - case 43: - if (lookahead == '.') ADVANCE(90); - END_STATE(); - case 44: - if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(23); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(44) - END_STATE(); - case 45: - if (lookahead == ':') ADVANCE(179); - END_STATE(); - case 46: - if (lookahead == '=') ADVANCE(167); - END_STATE(); - case 47: - if (lookahead == '=') ADVANCE(166); - END_STATE(); - case 48: - if (lookahead == '>') ADVANCE(245); - if (lookahead == '\\') ADVANCE(49); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(48); - END_STATE(); - case 49: - if (lookahead == '>') ADVANCE(246); - if (lookahead == '\\') ADVANCE(49); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(48); - END_STATE(); - case 50: - if (lookahead == '[') ADVANCE(180); - END_STATE(); - case 51: - if (lookahead == ']') ADVANCE(181); - END_STATE(); - case 52: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'e') ADVANCE(120); - if (lookahead == 'i') ADVANCE(110); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(52); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 53: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'e') ADVANCE(120); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(53); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 54: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'e') ADVANCE(122); - if (lookahead == 'i') ADVANCE(110); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(54); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 55: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'e') ADVANCE(122); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(55); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 56: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'i') ADVANCE(110); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(56); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 57: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(57); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 58: - if (lookahead == 'd') ADVANCE(61); - END_STATE(); - case 59: - if (lookahead == 'e') ADVANCE(62); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(59); - END_STATE(); - case 60: - if (lookahead == 'f') ADVANCE(94); - END_STATE(); - case 61: - if (lookahead == 'i') ADVANCE(60); - END_STATE(); - case 62: - if (lookahead == 'n') ADVANCE(58); - END_STATE(); - case 63: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 64: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); - END_STATE(); - case 65: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(218); - END_STATE(); - case 66: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(215); - END_STATE(); - case 67: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(218); - END_STATE(); - case 68: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(208); - END_STATE(); - case 69: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(241); - END_STATE(); - case 70: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); - END_STATE(); - case 71: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); - END_STATE(); - case 72: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(71); - END_STATE(); - case 73: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); - END_STATE(); - case 74: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(73); - END_STATE(); - case 75: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(74); - END_STATE(); - case 76: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(75); - END_STATE(); - case 77: - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(261); - if (lookahead == '\r') ADVANCE(265); - if (lookahead == '\\') ADVANCE(263); - END_STATE(); - case 78: - if (eof) ADVANCE(84); - if (lookahead == '\n') SKIP(82) - END_STATE(); - case 79: - if (eof) ADVANCE(84); - if (lookahead == '\n') SKIP(82) - if (lookahead == '\r') SKIP(78) - END_STATE(); - case 80: - if (eof) ADVANCE(84); - if (lookahead == '\n') SKIP(83) - END_STATE(); - case 81: - if (eof) ADVANCE(84); - if (lookahead == '\n') SKIP(83) - if (lookahead == '\r') SKIP(80) - END_STATE(); - case 82: - if (eof) ADVANCE(84); - if (lookahead == '!') ADVANCE(139); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '#') ADVANCE(52); - if (lookahead == '%') ADVANCE(156); - if (lookahead == '&') ADVANCE(165); - if (lookahead == '\'') ADVANCE(226); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '+') ADVANCE(147); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(211); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(168); - if (lookahead == '?') ADVANCE(190); - if (lookahead == 'L') ADVANCE(247); - if (lookahead == 'U') ADVANCE(249); - if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(79) - if (lookahead == ']') ADVANCE(186); - if (lookahead == '^') ADVANCE(162); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(251); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '|') ADVANCE(159); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 83: - if (eof) ADVANCE(84); - if (lookahead == '!') ADVANCE(138); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(226); - if (lookahead == '(') ADVANCE(137); - if (lookahead == ')') ADVANCE(92); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '+') ADVANCE(148); - if (lookahead == ',') ADVANCE(91); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(205); - if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(211); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(178); - if (lookahead == '=') ADVANCE(187); - if (lookahead == 'L') ADVANCE(247); - if (lookahead == 'U') ADVANCE(249); - if (lookahead == '[') ADVANCE(185); - if (lookahead == '\\') SKIP(81) - if (lookahead == ']') ADVANCE(186); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(259); - if (lookahead == 'u') ADVANCE(251); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '}') ADVANCE(183); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(83) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); - END_STATE(); - case 84: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 85: - ACCEPT_TOKEN(aux_sym_preproc_include_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(86); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(87); - if (lookahead == '\\') ADVANCE(128); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 93: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(108); - if (lookahead == 'n') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 94: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - END_STATE(); - case 95: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 96: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 97: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 98: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 99: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 100: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 101: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 102: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 103: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 104: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(112); +static inline bool sym_identifier_character_set_5(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942) + : (c <= 71945 || (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 + ? (c >= 71991 && c <= 71992) + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822) + : (c <= 118573 || (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179) + : (c <= 119213 || (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(103); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(108); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(101) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(35) + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(35) + if (lookahead == '\r') SKIP(1) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(38) + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(38) + if (lookahead == '\r') SKIP(3) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 5: + if (lookahead == '\n') SKIP(37) + END_STATE(); + case 6: + if (lookahead == '\n') SKIP(37) + if (lookahead == '\r') SKIP(5) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 7: + if (lookahead == '\n') SKIP(40) + END_STATE(); + case 8: + if (lookahead == '\n') SKIP(40) + if (lookahead == '\r') SKIP(7) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 9: + if (lookahead == '\n') SKIP(43) + END_STATE(); + case 10: + if (lookahead == '\n') SKIP(43) + if (lookahead == '\r') SKIP(9) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 11: + if (lookahead == '\n') SKIP(45) + END_STATE(); + case 12: + if (lookahead == '\n') SKIP(45) + if (lookahead == '\r') SKIP(11) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 13: + if (lookahead == '\n') SKIP(44) + END_STATE(); + case 14: + if (lookahead == '\n') SKIP(44) + if (lookahead == '\r') SKIP(13) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 15: + if (lookahead == '\n') SKIP(48) + END_STATE(); + case 16: + if (lookahead == '\n') SKIP(48) + if (lookahead == '\r') SKIP(15) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 17: + if (lookahead == '\n') SKIP(42) + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(42) + if (lookahead == '\r') SKIP(17) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 19: + if (lookahead == '\n') SKIP(41) + END_STATE(); + case 20: + if (lookahead == '\n') SKIP(41) + if (lookahead == '\r') SKIP(19) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 21: + if (lookahead == '\n') SKIP(23) + END_STATE(); + case 22: + if (lookahead == '\n') SKIP(23) + if (lookahead == '\r') SKIP(21) + END_STATE(); + case 23: + if (lookahead == '\n') ADVANCE(105); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '%') ADVANCE(185); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(176); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '/') ADVANCE(183); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(199); + if (lookahead == '\\') SKIP(22) + if (lookahead == '^') ADVANCE(191); + if (lookahead == '|') ADVANCE(190); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(23) + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(46) + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(46) + if (lookahead == '\r') SKIP(24) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 26: + if (lookahead == '\n') SKIP(47) + if (lookahead == '"') ADVANCE(265); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(269); + if (lookahead != 0) ADVANCE(270); + END_STATE(); + case 27: + if (lookahead == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(271); + if (lookahead == 'U') ADVANCE(99); + if (lookahead == 'u') ADVANCE(91); + if (lookahead == 'x') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (lookahead != 0) ADVANCE(271); + END_STATE(); + case 28: + if (lookahead == '\n') ADVANCE(106); + if (lookahead == '(') ADVANCE(108); + if (lookahead == '/') ADVANCE(160); + if (lookahead == '\\') ADVANCE(158); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(29) + if (lookahead != 0) ADVANCE(161); + END_STATE(); + case 29: + if (lookahead == '\n') ADVANCE(106); + if (lookahead == '/') ADVANCE(160); + if (lookahead == '\\') ADVANCE(158); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(29) + if (lookahead != 0) ADVANCE(161); + END_STATE(); + case 30: + if (lookahead == '\n') SKIP(56) + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') ADVANCE(258); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(260); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(257); + END_STATE(); + case 31: + if (lookahead == '\n') SKIP(36) + END_STATE(); + case 32: + if (lookahead == '\n') SKIP(36) + if (lookahead == '\r') SKIP(31) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 33: + if (lookahead == '\n') SKIP(39) + END_STATE(); + case 34: + if (lookahead == '\n') SKIP(39) + if (lookahead == '\r') SKIP(33) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 35: + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(35) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 36: + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(74); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(235); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(214); + if (lookahead == '\\') ADVANCE(32); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 37: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(208); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(6); + if (lookahead == ']') ADVANCE(64); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(37) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 38: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(71); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(235); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '=') ADVANCE(217); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(216); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(38) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 39: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(67); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ';') ADVANCE(208); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(34); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(39) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 40: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(69); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ';') ADVANCE(208); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(8); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(40) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 41: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '+') ADVANCE(180); + if (lookahead == '-') ADVANCE(175); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == 'L') ADVANCE(285); + if (lookahead == 'U') ADVANCE(286); + if (lookahead == '\\') ADVANCE(20); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(287); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 42: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(179); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(184); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(278); + if (lookahead == 'U') ADVANCE(280); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(282); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(42) + END_STATE(); + case 43: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(66); + if (lookahead == '%') ADVANCE(185); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(176); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '.') ADVANCE(54); + if (lookahead == '/') ADVANCE(183); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(199); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == '^') ADVANCE(191); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(289); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(190); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + END_STATE(); + case 44: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(68); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(179); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(184); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == ']') ADVANCE(64); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(289); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + END_STATE(); + case 45: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(70); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(179); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(184); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(289); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(45) + END_STATE(); + case 46: + if (lookahead == '"') ADVANCE(265); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '<') ADVANCE(60); + if (lookahead == 'L') ADVANCE(278); + if (lookahead == 'U') ADVANCE(280); + if (lookahead == '\\') ADVANCE(25); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(282); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(46) + END_STATE(); + case 47: + if (lookahead == '"') ADVANCE(265); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(47) + END_STATE(); + case 48: + if (lookahead == '#') ADVANCE(72); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(16); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(289); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(48) + END_STATE(); + case 49: + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); + END_STATE(); + case 50: + if (lookahead == '*') ADVANCE(50); + if (lookahead == '/') ADVANCE(290); + if (lookahead != 0) ADVANCE(51); + END_STATE(); + case 51: + if (lookahead == '*') ADVANCE(50); + if (lookahead != 0) ADVANCE(51); + END_STATE(); + case 52: + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(239); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + END_STATE(); + case 53: + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 54: + if (lookahead == '.') ADVANCE(55); + END_STATE(); + case 55: + if (lookahead == '.') ADVANCE(109); + END_STATE(); + case 56: + if (lookahead == '/') ADVANCE(49); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + END_STATE(); + case 57: + if (lookahead == ':') ADVANCE(209); + END_STATE(); + case 58: + if (lookahead == '=') ADVANCE(197); + END_STATE(); + case 59: + if (lookahead == '=') ADVANCE(196); + END_STATE(); + case 60: + if (lookahead == '>') ADVANCE(275); + if (lookahead == '\\') ADVANCE(61); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(60); + END_STATE(); + case 61: + if (lookahead == '>') ADVANCE(276); + if (lookahead == '\\') ADVANCE(61); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(60); + END_STATE(); + case 62: + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 63: + if (lookahead == '[') ADVANCE(210); + END_STATE(); + case 64: + if (lookahead == ']') ADVANCE(211); + END_STATE(); + case 65: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'i') ADVANCE(135); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(65); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 66: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(66); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 67: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'i') ADVANCE(135); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(67); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 68: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(68); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 69: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'i') ADVANCE(135); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(69); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 70: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(70); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 71: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'i') ADVANCE(135); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(71); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 72: + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 73: + if (lookahead == 'd') ADVANCE(76); + END_STATE(); + case 74: + if (lookahead == 'e') ADVANCE(77); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(74); + END_STATE(); + case 75: + if (lookahead == 'f') ADVANCE(113); + END_STATE(); + case 76: + if (lookahead == 'i') ADVANCE(75); + END_STATE(); + case 77: + if (lookahead == 'n') ADVANCE(73); + END_STATE(); + case 78: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 79: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + END_STATE(); + case 80: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + END_STATE(); + case 81: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(289); + END_STATE(); + case 82: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); + END_STATE(); + case 83: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + END_STATE(); + case 84: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); + END_STATE(); + case 85: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(271); + END_STATE(); + case 86: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + END_STATE(); + case 87: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); + END_STATE(); + case 88: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); + END_STATE(); + case 89: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); + END_STATE(); + case 90: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + END_STATE(); + case 91: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + END_STATE(); + case 92: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + END_STATE(); + case 93: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + END_STATE(); + case 94: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + END_STATE(); + case 95: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + END_STATE(); + case 96: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); + END_STATE(); + case 97: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); + END_STATE(); + case 98: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); + END_STATE(); + case 99: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(97); + END_STATE(); + case 100: + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(291); + if (lookahead == '\r') ADVANCE(295); + if (lookahead == '\\') ADVANCE(293); + END_STATE(); + case 101: + if (eof) ADVANCE(103); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(101) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 102: + if (eof) ADVANCE(103); + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(71); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(235); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '=') ADVANCE(217); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(216); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(102) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 103: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 104: + ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); case 105: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(105); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(106); + if (lookahead == '\\') ADVANCE(158); + END_STATE(); + case 107: + ACCEPT_TOKEN(aux_sym_preproc_def_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 112: + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(131); + if (lookahead == 'n') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 113: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + END_STATE(); + case 114: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 115: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 116: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 117: + ACCEPT_TOKEN(aux_sym_preproc_else_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 118: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(133); + if (lookahead == 'n') ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 119: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 120: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 121: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 122: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'c') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 106: + case 123: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(88); + if (lookahead == 'd') ADVANCE(147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 107: + case 124: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(85); + if (lookahead == 'd') ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 108: + case 125: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'd') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 109: + case 126: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(116); + if (lookahead == 'd') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 110: + case 127: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(93); - if (lookahead == 'n') ADVANCE(100); + if (lookahead == 'e') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 111: + case 128: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(93); + if (lookahead == 'e') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 112: + case 129: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(117); + if (lookahead == 'e') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 113: + case 130: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(99); + if (lookahead == 'e') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 114: + case 131: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(95); + if (lookahead == 'e') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 115: + case 132: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(96); + if (lookahead == 'e') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 116: + case 133: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(97); + if (lookahead == 'e') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 117: + case 134: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(123); + if (lookahead == 'e') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 118: + case 135: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(113); - if (lookahead == 's') ADVANCE(105); + if (lookahead == 'f') ADVANCE(112); + if (lookahead == 'n') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 119: + case 136: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(114); + if (lookahead == 'f') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 120: + case 137: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(118); - if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'f') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 121: + case 138: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(124); + if (lookahead == 'f') ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 122: + case 139: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'f') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 123: + case 140: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'f') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 124: + case 141: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(102); + if (lookahead == 'f') ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 125: + case 142: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(138); + if (lookahead == 's') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 147: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 148: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 's') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'n') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 150: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 151: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(148); + if (lookahead == 'n') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(124); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); + END_STATE(); + case 155: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); END_STATE(); - case 126: + case 156: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(39); - if (lookahead == '*') ADVANCE(126); - if (lookahead == '/') ADVANCE(260); - if (lookahead == '\\') ADVANCE(132); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '\n') ADVANCE(51); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '/') ADVANCE(290); + if (lookahead == '\\') ADVANCE(162); + if (lookahead != 0) ADVANCE(157); END_STATE(); - case 127: + case 157: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(39); - if (lookahead == '*') ADVANCE(126); - if (lookahead == '\\') ADVANCE(132); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '\n') ADVANCE(51); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '\\') ADVANCE(162); + if (lookahead != 0) ADVANCE(157); END_STATE(); - case 128: + case 158: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(25) - if (lookahead == '\r') ADVANCE(129); - if (lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(131); + if (lookahead == '\n') SKIP(29) + if (lookahead == '\r') ADVANCE(159); + if (lookahead == '\\') ADVANCE(163); + if (lookahead != 0) ADVANCE(161); END_STATE(); - case 129: + case 159: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(25) - if (lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(131); + if (lookahead == '\n') SKIP(29) + if (lookahead == '\\') ADVANCE(163); + if (lookahead != 0) ADVANCE(161); END_STATE(); - case 130: + case 160: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(127); - if (lookahead == '/') ADVANCE(262); - if (lookahead == '\\') ADVANCE(133); + if (lookahead == '*') ADVANCE(157); + if (lookahead == '/') ADVANCE(292); + if (lookahead == '\\') ADVANCE(163); if (lookahead != 0 && - lookahead != '\n') ADVANCE(131); + lookahead != '\n') ADVANCE(161); END_STATE(); - case 131: + case 161: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(133); + if (lookahead == '\\') ADVANCE(163); if (lookahead != 0 && - lookahead != '\n') ADVANCE(131); + lookahead != '\n') ADVANCE(161); END_STATE(); - case 132: + case 162: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && lookahead != '*' && - lookahead != '\\') ADVANCE(127); - if (lookahead == '\r') ADVANCE(135); - if (lookahead == '*') ADVANCE(126); - if (lookahead == '\\') ADVANCE(132); + lookahead != '\\') ADVANCE(157); + if (lookahead == '\r') ADVANCE(165); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '\\') ADVANCE(162); END_STATE(); - case 133: + case 163: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(131); - if (lookahead == '\r') ADVANCE(136); - if (lookahead == '\\') ADVANCE(133); + lookahead != '\\') ADVANCE(161); + if (lookahead == '\r') ADVANCE(166); + if (lookahead == '\\') ADVANCE(163); END_STATE(); - case 134: + case 164: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(262); - if (lookahead == '\r') ADVANCE(266); - if (lookahead == '\\') ADVANCE(264); + lookahead != '\\') ADVANCE(292); + if (lookahead == '\r') ADVANCE(296); + if (lookahead == '\\') ADVANCE(294); END_STATE(); - case 135: + case 165: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '*' && - lookahead != '\\') ADVANCE(127); - if (lookahead == '*') ADVANCE(126); - if (lookahead == '\\') ADVANCE(132); + lookahead != '\\') ADVANCE(157); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '\\') ADVANCE(162); END_STATE(); - case 136: + case 166: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '\\') ADVANCE(131); - if (lookahead == '\\') ADVANCE(133); + lookahead != '\\') ADVANCE(161); + if (lookahead == '\\') ADVANCE(163); END_STATE(); - case 137: + case 167: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 138: + case 168: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 139: + case 169: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(167); + if (lookahead == '=') ADVANCE(197); END_STATE(); - case 140: + case 170: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 141: + case 171: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 142: + case 172: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(211); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(206); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(236); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 143: + case 173: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(211); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 144: + case 174: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(206); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(236); END_STATE(); - case 145: + case 175: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(211); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 146: + case 176: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 147: + case 177: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(202); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(211); - if (lookahead == '=') ADVANCE(194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '+') ADVANCE(232); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (lookahead == '=') ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 148: + case 178: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(202); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(211); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '+') ADVANCE(232); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 149: + case 179: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(202); - if (lookahead == '=') ADVANCE(194); + if (lookahead == '+') ADVANCE(232); + if (lookahead == '=') ADVANCE(224); END_STATE(); - case 150: + case 180: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(211); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 151: + case 181: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 152: + case 182: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(191); + if (lookahead == '=') ADVANCE(221); END_STATE(); - case 153: + case 183: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(261); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); END_STATE(); - case 154: + case 184: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(261); - if (lookahead == '=') ADVANCE(192); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); + if (lookahead == '=') ADVANCE(222); END_STATE(); - case 155: + case 185: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 156: + case 186: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(193); + if (lookahead == '=') ADVANCE(223); END_STATE(); - case 157: + case 187: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 158: + case 188: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 159: + case 189: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '|') ADVANCE(157); + if (lookahead == '=') ADVANCE(230); + if (lookahead == '|') ADVANCE(187); END_STATE(); - case 160: + case 190: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(157); + if (lookahead == '|') ADVANCE(187); END_STATE(); - case 161: + case 191: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 162: + case 192: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(199); + if (lookahead == '=') ADVANCE(229); END_STATE(); - case 163: + case 193: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 164: + case 194: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '&') ADVANCE(188); END_STATE(); - case 165: + case 195: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '=') ADVANCE(198); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '=') ADVANCE(228); END_STATE(); - case 166: + case 196: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 167: + case 197: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 168: + case 198: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(177); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(207); END_STATE(); - case 169: + case 199: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(176); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(206); END_STATE(); - case 170: + case 200: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 171: + case 201: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 172: + case 202: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '=') ADVANCE(171); + if (lookahead == '<') ADVANCE(205); + if (lookahead == '=') ADVANCE(201); END_STATE(); - case 173: + case 203: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(171); + if (lookahead == '<') ADVANCE(204); + if (lookahead == '=') ADVANCE(201); END_STATE(); - case 174: + case 204: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 175: + case 205: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(196); + if (lookahead == '=') ADVANCE(226); END_STATE(); - case 176: + case 206: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 177: + case 207: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(197); + if (lookahead == '=') ADVANCE(227); END_STATE(); - case 178: + case 208: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 179: + case 209: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 180: + case 210: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 181: + case 211: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 182: + case 212: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 183: + case 213: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 184: + case 214: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 185: + case 215: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(180); + if (lookahead == '[') ADVANCE(210); END_STATE(); - case 186: + case 216: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 187: + case 217: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 188: + case 218: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(166); + if (lookahead == '=') ADVANCE(196); END_STATE(); - case 189: + case 219: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 190: + case 220: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 191: + case 221: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 192: + case 222: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 193: + case 223: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 194: + case 224: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 195: + case 225: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 196: + case 226: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 197: + case 227: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 198: + case 228: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 199: + case 229: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 200: + case 230: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 201: + case 231: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 202: + case 232: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 203: + case 233: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 204: + case 234: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); + if (lookahead == '.') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); - case 205: + case 235: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); - case 206: + case 236: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 207: + case 237: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(64); + if (lookahead == '\'') ADVANCE(79); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); - case 208: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(68); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(208); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(208); - END_STATE(); - case 209: + case 238: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(65); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); + lookahead == 'f') ADVANCE(248); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); - if (lookahead == 'b') ADVANCE(217); - if (lookahead == 'x') ADVANCE(67); + lookahead == 'u') ADVANCE(251); + if (lookahead == 'b') ADVANCE(247); + if (lookahead == 'x') ADVANCE(83); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(246); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); END_STATE(); - case 210: + case 239: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(65); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); + lookahead == 'f') ADVANCE(248); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(246); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); END_STATE(); - case 211: + case 240: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(63); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(78); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); - if (lookahead == 'b') ADVANCE(41); - if (lookahead == 'x') ADVANCE(40); + lookahead == 'u') ADVANCE(251); + if (lookahead == 'b') ADVANCE(53); + if (lookahead == 'x') ADVANCE(52); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 212: + case 241: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(63); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(78); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); - if (lookahead == 'b') ADVANCE(63); - if (lookahead == 'x') ADVANCE(67); + lookahead == 'u') ADVANCE(251); + if (lookahead == 'b') ADVANCE(78); + if (lookahead == 'x') ADVANCE(83); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 213: + case 242: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(63); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(78); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 214: + case 243: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(84); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(243); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(243); + END_STATE(); + case 244: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(66); + if (lookahead == '\'') ADVANCE(82); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(215); + lookahead == 'f') ADVANCE(245); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == '+' || - lookahead == '-') ADVANCE(68); + lookahead == '-') ADVANCE(84); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(214); + lookahead == 'e') ADVANCE(244); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(215); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); END_STATE(); - case 215: + case 245: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(66); + if (lookahead == '\'') ADVANCE(82); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(215); + lookahead == 'f') ADVANCE(245); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(214); + lookahead == 'e') ADVANCE(244); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(215); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); END_STATE(); - case 216: + case 246: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(67); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(83); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); + lookahead == 'f') ADVANCE(248); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == '+' || - lookahead == '-') ADVANCE(68); + lookahead == '-') ADVANCE(84); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(246); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(218); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); END_STATE(); - case 217: + case 247: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(67); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(83); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); + lookahead == 'f') ADVANCE(248); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(246); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); END_STATE(); - case 218: + case 248: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(67); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '\'') ADVANCE(83); + if (lookahead == '.') ADVANCE(249); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); + lookahead == 'f') ADVANCE(248); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(246); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(218); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); END_STATE(); - case 219: + case 249: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(215); + lookahead == 'f') ADVANCE(245); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(214); + lookahead == 'e') ADVANCE(244); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(220); + lookahead == 'p') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(215); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); END_STATE(); - case 220: + case 250: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(208); + lookahead == 'f') ADVANCE(243); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); if (lookahead == '+' || - lookahead == '-') ADVANCE(68); + lookahead == '-') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(208); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(243); END_STATE(); - case 221: + case 251: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(221); + lookahead == 'u') ADVANCE(251); END_STATE(); - case 222: + case 252: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 223: + case 253: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 224: + case 254: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 225: + case 255: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 226: + case 256: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 227: + case 257: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 228: + case 258: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(242); - if (lookahead == '\r') ADVANCE(241); - if (lookahead == 'U') ADVANCE(76); - if (lookahead == 'u') ADVANCE(72); - if (lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (lookahead != 0) ADVANCE(241); + if (lookahead == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(271); + if (lookahead == 'U') ADVANCE(99); + if (lookahead == 'u') ADVANCE(91); + if (lookahead == 'x') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (lookahead != 0) ADVANCE(271); END_STATE(); - case 229: + case 259: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(261); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); END_STATE(); - case 230: + case 260: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(27); END_STATE(); - case 231: + case 261: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 232: + case 262: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 233: + case 263: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 234: + case 264: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 235: + case 265: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 236: + case 266: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(238); - if (lookahead == '/') ADVANCE(240); + if (lookahead == '*') ADVANCE(268); + if (lookahead == '/') ADVANCE(270); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(240); + lookahead != '\\') ADVANCE(270); END_STATE(); - case 237: + case 267: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(237); - if (lookahead == '/') ADVANCE(240); + if (lookahead == '*') ADVANCE(267); + if (lookahead == '/') ADVANCE(270); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(238); + lookahead != '\\') ADVANCE(268); END_STATE(); - case 238: + case 268: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(237); + if (lookahead == '*') ADVANCE(267); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(238); + lookahead != '\\') ADVANCE(268); END_STATE(); - case 239: + case 269: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(236); + if (lookahead == '/') ADVANCE(266); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(239); + lookahead == ' ') ADVANCE(269); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(240); + lookahead != '\\') ADVANCE(270); END_STATE(); - case 240: + case 270: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(240); + lookahead != '\\') ADVANCE(270); END_STATE(); - case 241: + case 271: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 242: + case 272: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(27); END_STATE(); - case 243: + case 273: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(241); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); END_STATE(); - case 244: + case 274: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); - case 245: + case 275: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 246: + case 276: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(245); - if (lookahead == '\\') ADVANCE(49); + if (lookahead == '>') ADVANCE(275); + if (lookahead == '\\') ADVANCE(61); if (lookahead != 0 && - lookahead != '\n') ADVANCE(48); + lookahead != '\n') ADVANCE(60); END_STATE(); - case 247: + case 277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(231); - if (lookahead == '\'') ADVANCE(222); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(261); + if (lookahead == '\'') ADVANCE(252); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 248: + case 278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(231); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(261); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 249: + case 279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(233); - if (lookahead == '\'') ADVANCE(224); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(263); + if (lookahead == '\'') ADVANCE(254); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 250: + case 280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(233); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(263); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 251: + case 281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(232); - if (lookahead == '\'') ADVANCE(223); - if (lookahead == '8') ADVANCE(253); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(262); + if (lookahead == '\'') ADVANCE(253); + if (lookahead == '8') ADVANCE(283); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 252: + case 282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(232); - if (lookahead == '8') ADVANCE(254); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(262); + if (lookahead == '8') ADVANCE(284); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 253: + case 283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(234); - if (lookahead == '\'') ADVANCE(225); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '\'') ADVANCE(255); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 254: + case 284: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(234); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 255: + case 285: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(222); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '\'') ADVANCE(252); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 256: + case 286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(224); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '\'') ADVANCE(254); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 257: + case 287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(223); - if (lookahead == '8') ADVANCE(258); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '\'') ADVANCE(253); + if (lookahead == '8') ADVANCE(288); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 258: + case 288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(225); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '\'') ADVANCE(255); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 259: + case 289: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(259); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); END_STATE(); - case 260: + case 290: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 261: + case 291: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(77); + if (lookahead == '\\') ADVANCE(100); if (lookahead != 0 && - lookahead != '\n') ADVANCE(261); + lookahead != '\n') ADVANCE(291); END_STATE(); - case 262: + case 292: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(134); + if (lookahead == '\\') ADVANCE(164); if (lookahead != 0 && - lookahead != '\n') ADVANCE(262); + lookahead != '\n') ADVANCE(292); END_STATE(); - case 263: + case 293: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(261); - if (lookahead == '\r') ADVANCE(265); - if (lookahead == '\\') ADVANCE(263); + lookahead != '\\') ADVANCE(291); + if (lookahead == '\r') ADVANCE(295); + if (lookahead == '\\') ADVANCE(293); END_STATE(); - case 264: + case 294: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(262); - if (lookahead == '\r') ADVANCE(266); - if (lookahead == '\\') ADVANCE(264); + lookahead != '\\') ADVANCE(292); + if (lookahead == '\r') ADVANCE(296); + if (lookahead == '\\') ADVANCE(294); END_STATE(); - case 265: + case 295: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(261); - if (lookahead == '\\') ADVANCE(77); + lookahead != '\\') ADVANCE(291); + if (lookahead == '\\') ADVANCE(100); END_STATE(); - case 266: + case 296: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(262); - if (lookahead == '\\') ADVANCE(134); + lookahead != '\\') ADVANCE(292); + if (lookahead == '\\') ADVANCE(164); END_STATE(); default: return false; @@ -10512,1180 +11123,1331 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(12); if (lookahead == 'i') ADVANCE(13); if (lookahead == 'l') ADVANCE(14); - if (lookahead == 'o') ADVANCE(15); - if (lookahead == 'r') ADVANCE(16); - if (lookahead == 's') ADVANCE(17); - if (lookahead == 't') ADVANCE(18); - if (lookahead == 'u') ADVANCE(19); - if (lookahead == 'v') ADVANCE(20); - if (lookahead == 'w') ADVANCE(21); + if (lookahead == 'm') ADVANCE(15); + if (lookahead == 'n') ADVANCE(16); + if (lookahead == 'o') ADVANCE(17); + if (lookahead == 'p') ADVANCE(18); + if (lookahead == 'r') ADVANCE(19); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 't') ADVANCE(21); + if (lookahead == 'u') ADVANCE(22); + if (lookahead == 'v') ADVANCE(23); + if (lookahead == 'w') ADVANCE(24); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'A') ADVANCE(22); + if (lookahead == 'A') ADVANCE(25); END_STATE(); case 2: - if (lookahead == 'U') ADVANCE(23); + if (lookahead == 'U') ADVANCE(26); END_STATE(); case 3: - if (lookahead == 'R') ADVANCE(24); + if (lookahead == 'R') ADVANCE(27); END_STATE(); case 4: if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(25) + if (lookahead == '\r') SKIP(28) END_STATE(); case 5: - if (lookahead == 'A') ADVANCE(26); - if (lookahead == 'G') ADVANCE(27); - if (lookahead == 'N') ADVANCE(28); - if (lookahead == '_') ADVANCE(29); - if (lookahead == 'u') ADVANCE(30); + if (lookahead == 'A') ADVANCE(29); + if (lookahead == 'G') ADVANCE(30); + if (lookahead == 'N') ADVANCE(31); + if (lookahead == '_') ADVANCE(32); + if (lookahead == 'u') ADVANCE(33); END_STATE(); case 6: - if (lookahead == 's') ADVANCE(31); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 's') ADVANCE(34); + if (lookahead == 'u') ADVANCE(35); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(33); - if (lookahead == 'r') ADVANCE(34); + if (lookahead == 'o') ADVANCE(36); + if (lookahead == 'r') ADVANCE(37); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(35); - if (lookahead == 'h') ADVANCE(36); - if (lookahead == 'o') ADVANCE(37); + if (lookahead == 'a') ADVANCE(38); + if (lookahead == 'h') ADVANCE(39); + if (lookahead == 'o') ADVANCE(40); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(38); - if (lookahead == 'o') ADVANCE(39); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'o') ADVANCE(42); END_STATE(); case 10: - if (lookahead == 'l') ADVANCE(40); - if (lookahead == 'n') ADVANCE(41); - if (lookahead == 'x') ADVANCE(42); + if (lookahead == 'l') ADVANCE(43); + if (lookahead == 'n') ADVANCE(44); + if (lookahead == 'x') ADVANCE(45); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(43); - if (lookahead == 'l') ADVANCE(44); - if (lookahead == 'o') ADVANCE(45); + if (lookahead == 'a') ADVANCE(46); + if (lookahead == 'l') ADVANCE(47); + if (lookahead == 'o') ADVANCE(48); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(46); + if (lookahead == 'o') ADVANCE(49); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(47); - if (lookahead == 'n') ADVANCE(48); + if (lookahead == 'f') ADVANCE(50); + if (lookahead == 'n') ADVANCE(51); END_STATE(); case 14: - if (lookahead == 'o') ADVANCE(49); + if (lookahead == 'o') ADVANCE(52); END_STATE(); case 15: - if (lookahead == 'f') ADVANCE(50); + if (lookahead == 'a') ADVANCE(53); END_STATE(); case 16: - if (lookahead == 'e') ADVANCE(51); + if (lookahead == 'o') ADVANCE(54); + if (lookahead == 'u') ADVANCE(55); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(52); - if (lookahead == 'i') ADVANCE(53); - if (lookahead == 's') ADVANCE(54); - if (lookahead == 't') ADVANCE(55); - if (lookahead == 'w') ADVANCE(56); + if (lookahead == 'f') ADVANCE(56); END_STATE(); case 18: - if (lookahead == 'r') ADVANCE(57); - if (lookahead == 'y') ADVANCE(58); + if (lookahead == 't') ADVANCE(57); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(59); - if (lookahead == 'n') ADVANCE(60); + if (lookahead == 'e') ADVANCE(58); END_STATE(); case 20: - if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'h') ADVANCE(59); + if (lookahead == 'i') ADVANCE(60); + if (lookahead == 's') ADVANCE(61); + if (lookahead == 't') ADVANCE(62); + if (lookahead == 'w') ADVANCE(63); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(62); + if (lookahead == 'h') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); END_STATE(); case 22: - if (lookahead == 'L') ADVANCE(63); + if (lookahead == 'i') ADVANCE(67); + if (lookahead == 'n') ADVANCE(68); END_STATE(); case 23: - if (lookahead == 'L') ADVANCE(64); + if (lookahead == 'o') ADVANCE(69); END_STATE(); case 24: - if (lookahead == 'U') ADVANCE(65); + if (lookahead == 'h') ADVANCE(70); END_STATE(); case 25: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'L') ADVANCE(71); END_STATE(); case 26: - if (lookahead == 't') ADVANCE(66); + if (lookahead == 'L') ADVANCE(72); END_STATE(); case 27: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'U') ADVANCE(73); END_STATE(); case 28: - if (lookahead == 'o') ADVANCE(68); + if (lookahead == '\n') SKIP(0) END_STATE(); case 29: - if (lookahead == 'a') ADVANCE(69); - if (lookahead == 'b') ADVANCE(70); - if (lookahead == 'c') ADVANCE(71); - if (lookahead == 'd') ADVANCE(72); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'r') ADVANCE(74); - if (lookahead == 's') ADVANCE(75); - if (lookahead == 't') ADVANCE(76); - if (lookahead == 'u') ADVANCE(77); - if (lookahead == 'v') ADVANCE(78); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(79); + if (lookahead == 'e') ADVANCE(75); END_STATE(); case 31: - if (lookahead == 'm') ADVANCE(80); + if (lookahead == 'o') ADVANCE(76); END_STATE(); case 32: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'b') ADVANCE(78); + if (lookahead == 'c') ADVANCE(79); + if (lookahead == 'd') ADVANCE(80); + if (lookahead == 'f') ADVANCE(81); + if (lookahead == 'r') ADVANCE(82); + if (lookahead == 's') ADVANCE(83); + if (lookahead == 't') ADVANCE(84); + if (lookahead == 'u') ADVANCE(85); + if (lookahead == 'v') ADVANCE(86); END_STATE(); case 33: - if (lookahead == 'o') ADVANCE(82); + if (lookahead == 'n') ADVANCE(87); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(83); + if (lookahead == 'm') ADVANCE(88); END_STATE(); case 35: - if (lookahead == 's') ADVANCE(84); + if (lookahead == 't') ADVANCE(89); END_STATE(); case 36: - if (lookahead == 'a') ADVANCE(85); + if (lookahead == 'o') ADVANCE(90); END_STATE(); case 37: - if (lookahead == 'n') ADVANCE(86); + if (lookahead == 'e') ADVANCE(91); END_STATE(); case 38: - if (lookahead == 'f') ADVANCE(87); + if (lookahead == 's') ADVANCE(92); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(88); + if (lookahead == 'a') ADVANCE(93); END_STATE(); case 40: - if (lookahead == 's') ADVANCE(89); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 41: - if (lookahead == 'u') ADVANCE(90); + if (lookahead == 'f') ADVANCE(95); END_STATE(); case 42: - if (lookahead == 't') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(96); END_STATE(); case 43: - if (lookahead == 'l') ADVANCE(92); + if (lookahead == 's') ADVANCE(97); END_STATE(); case 44: - if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'u') ADVANCE(98); END_STATE(); case 45: - if (lookahead == 'r') ADVANCE(94); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 46: - if (lookahead == 't') ADVANCE(95); + if (lookahead == 'l') ADVANCE(100); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'o') ADVANCE(101); END_STATE(); case 48: - if (lookahead == 'l') ADVANCE(96); - if (lookahead == 't') ADVANCE(97); + if (lookahead == 'r') ADVANCE(102); END_STATE(); case 49: - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 50: - if (lookahead == 'f') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 51: - if (lookahead == 'g') ADVANCE(100); - if (lookahead == 's') ADVANCE(101); - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'l') ADVANCE(104); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 52: - if (lookahead == 'o') ADVANCE(103); + if (lookahead == 'n') ADVANCE(106); END_STATE(); case 53: - if (lookahead == 'g') ADVANCE(104); - if (lookahead == 'z') ADVANCE(105); + if (lookahead == 'x') ADVANCE(107); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(106); + if (lookahead == 'r') ADVANCE(108); END_STATE(); case 55: - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'r') ADVANCE(108); + if (lookahead == 'l') ADVANCE(109); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(109); + if (lookahead == 'f') ADVANCE(110); END_STATE(); case 57: - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'r') ADVANCE(111); END_STATE(); case 58: - if (lookahead == 'p') ADVANCE(111); + if (lookahead == 'g') ADVANCE(112); + if (lookahead == 's') ADVANCE(113); + if (lookahead == 't') ADVANCE(114); END_STATE(); case 59: - if (lookahead == 'n') ADVANCE(112); + if (lookahead == 'o') ADVANCE(115); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(113); - if (lookahead == 's') ADVANCE(114); + if (lookahead == 'g') ADVANCE(116); + if (lookahead == 'z') ADVANCE(117); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(115); - if (lookahead == 'l') ADVANCE(116); + if (lookahead == 'i') ADVANCE(118); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'a') ADVANCE(119); + if (lookahead == 'r') ADVANCE(120); END_STATE(); case 63: - if (lookahead == 'S') ADVANCE(118); + if (lookahead == 'i') ADVANCE(121); END_STATE(); case 64: - if (lookahead == 'L') ADVANCE(119); + if (lookahead == 'r') ADVANCE(122); END_STATE(); case 65: - if (lookahead == 'E') ADVANCE(120); + if (lookahead == 'u') ADVANCE(123); END_STATE(); case 66: - if (lookahead == 'o') ADVANCE(121); + if (lookahead == 'p') ADVANCE(124); END_STATE(); case 67: - if (lookahead == 'n') ADVANCE(122); + if (lookahead == 'n') ADVANCE(125); END_STATE(); case 68: - if (lookahead == 'r') ADVANCE(123); + if (lookahead == 'i') ADVANCE(126); + if (lookahead == 's') ADVANCE(127); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(124); - if (lookahead == 't') ADVANCE(125); + if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'l') ADVANCE(129); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(126); + if (lookahead == 'i') ADVANCE(130); END_STATE(); case 71: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'l') ADVANCE(128); + if (lookahead == 'S') ADVANCE(131); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'L') ADVANCE(132); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(130); + if (lookahead == 'E') ADVANCE(133); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'o') ADVANCE(134); END_STATE(); case 75: - if (lookahead == 'p') ADVANCE(132); - if (lookahead == 't') ADVANCE(133); + if (lookahead == 'n') ADVANCE(135); END_STATE(); case 76: - if (lookahead == 'h') ADVANCE(134); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 77: - if (lookahead == 'n') ADVANCE(135); - if (lookahead == 'p') ADVANCE(136); + if (lookahead == 's') ADVANCE(137); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'a') ADVANCE(139); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(138); + if (lookahead == 'd') ADVANCE(140); + if (lookahead == 'l') ADVANCE(141); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_asm); + if (lookahead == 'e') ADVANCE(142); END_STATE(); case 81: - if (lookahead == 'o') ADVANCE(139); + if (lookahead == 'a') ADVANCE(143); END_STATE(); case 82: - if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'e') ADVANCE(144); END_STATE(); case 83: - if (lookahead == 'a') ADVANCE(141); + if (lookahead == 'p') ADVANCE(145); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'h') ADVANCE(147); END_STATE(); case 85: - if (lookahead == 'r') ADVANCE(143); + if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'p') ADVANCE(149); END_STATE(); case 86: - if (lookahead == 's') ADVANCE(144); - if (lookahead == 't') ADVANCE(145); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 87: - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'a') ADVANCE(151); END_STATE(); case 88: - if (lookahead == 'b') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'o') ADVANCE(152); END_STATE(); case 90: - if (lookahead == 'm') ADVANCE(150); + if (lookahead == 'l') ADVANCE(153); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'a') ADVANCE(154); END_STATE(); case 92: - if (lookahead == 's') ADVANCE(152); + if (lookahead == 'e') ADVANCE(155); END_STATE(); case 93: - if (lookahead == 'a') ADVANCE(153); + if (lookahead == 'r') ADVANCE(156); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(157); + if (lookahead == 't') ADVANCE(158); END_STATE(); case 95: - if (lookahead == 'o') ADVANCE(154); + if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'i') ADVANCE(160); END_STATE(); case 96: - if (lookahead == 'i') ADVANCE(155); + if (lookahead == 'b') ADVANCE(161); END_STATE(); case 97: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(156); - if (lookahead == '3') ADVANCE(157); - if (lookahead == '6') ADVANCE(158); - if (lookahead == '8') ADVANCE(159); - if (lookahead == 'p') ADVANCE(160); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 98: - if (lookahead == 'g') ADVANCE(161); + if (lookahead == 'm') ADVANCE(163); END_STATE(); case 99: - if (lookahead == 's') ADVANCE(162); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 100: - if (lookahead == 'i') ADVANCE(163); + if (lookahead == 's') ADVANCE(165); END_STATE(); case 101: - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'a') ADVANCE(166); END_STATE(); case 102: - if (lookahead == 'u') ADVANCE(165); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 103: - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 104: - if (lookahead == 'n') ADVANCE(167); + if (lookahead == 'i') ADVANCE(168); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(168); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(169); + if (lookahead == '3') ADVANCE(170); + if (lookahead == '6') ADVANCE(171); + if (lookahead == '8') ADVANCE(172); + if (lookahead == 'p') ADVANCE(173); END_STATE(); case 106: - if (lookahead == 'z') ADVANCE(169); + if (lookahead == 'g') ADVANCE(174); END_STATE(); case 107: - if (lookahead == 't') ADVANCE(170); + if (lookahead == '_') ADVANCE(175); END_STATE(); case 108: - if (lookahead == 'u') ADVANCE(171); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 109: - if (lookahead == 't') ADVANCE(172); + if (lookahead == 'l') ADVANCE(177); END_STATE(); case 110: - if (lookahead == 'e') ADVANCE(120); + if (lookahead == 's') ADVANCE(178); END_STATE(); case 111: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'd') ADVANCE(179); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'i') ADVANCE(180); END_STATE(); case 113: - if (lookahead == 'o') ADVANCE(175); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 114: - if (lookahead == 'i') ADVANCE(176); + if (lookahead == 'u') ADVANCE(182); END_STATE(); case 115: - if (lookahead == 'd') ADVANCE(140); + if (lookahead == 'r') ADVANCE(183); END_STATE(); case 116: - if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'n') ADVANCE(184); END_STATE(); case 117: - if (lookahead == 'l') ADVANCE(178); + if (lookahead == 'e') ADVANCE(185); END_STATE(); case 118: - if (lookahead == 'E') ADVANCE(179); + if (lookahead == 'z') ADVANCE(186); END_STATE(); case 119: - ACCEPT_TOKEN(sym_null); + if (lookahead == 't') ADVANCE(187); END_STATE(); case 120: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'u') ADVANCE(188); END_STATE(); case 121: - if (lookahead == 'm') ADVANCE(180); + if (lookahead == 't') ADVANCE(189); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'e') ADVANCE(133); END_STATE(); case 124: - if (lookahead == 'm') ADVANCE(183); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 125: - if (lookahead == 't') ADVANCE(184); + if (lookahead == 't') ADVANCE(192); END_STATE(); case 126: - if (lookahead == 's') ADVANCE(185); + if (lookahead == 'o') ADVANCE(193); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'i') ADVANCE(194); END_STATE(); case 128: - if (lookahead == 'r') ADVANCE(187); + if (lookahead == 'd') ADVANCE(153); END_STATE(); case 129: - if (lookahead == 'c') ADVANCE(188); + if (lookahead == 'a') ADVANCE(195); END_STATE(); case 130: - if (lookahead == 's') ADVANCE(189); + if (lookahead == 'l') ADVANCE(196); END_STATE(); case 131: - if (lookahead == 's') ADVANCE(190); + if (lookahead == 'E') ADVANCE(197); END_STATE(); case 132: - if (lookahead == 't') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); case 133: - if (lookahead == 'd') ADVANCE(192); + ACCEPT_TOKEN(sym_true); END_STATE(); case 134: - if (lookahead == 'i') ADVANCE(193); + if (lookahead == 'm') ADVANCE(198); END_STATE(); case 135: - if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'e') ADVANCE(199); END_STATE(); case 136: - if (lookahead == 't') ADVANCE(195); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 137: - if (lookahead == 'c') ADVANCE(196); + if (lookahead == 'm') ADVANCE(201); END_STATE(); case 138: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 't') ADVANCE(202); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 's') ADVANCE(203); END_STATE(); case 140: - ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 141: - if (lookahead == 'k') ADVANCE(198); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'c') ADVANCE(206); END_STATE(); case 143: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(199); - if (lookahead == '3') ADVANCE(200); - if (lookahead == '6') ADVANCE(201); - if (lookahead == '8') ADVANCE(202); - if (lookahead == 'p') ADVANCE(203); + if (lookahead == 's') ADVANCE(207); END_STATE(); case 144: - if (lookahead == 't') ADVANCE(204); + if (lookahead == 's') ADVANCE(208); END_STATE(); case 145: - if (lookahead == 'i') ADVANCE(205); + if (lookahead == 't') ADVANCE(209); END_STATE(); case 146: - if (lookahead == 'u') ADVANCE(206); + if (lookahead == 'd') ADVANCE(210); END_STATE(); case 147: - if (lookahead == 'n') ADVANCE(207); + if (lookahead == 'i') ADVANCE(211); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(208); + if (lookahead == 'a') ADVANCE(212); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 't') ADVANCE(213); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'c') ADVANCE(214); END_STATE(); case 151: - if (lookahead == 'r') ADVANCE(209); + if (lookahead == 'l') ADVANCE(215); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 153: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(sym_primitive_type); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'k') ADVANCE(216); END_STATE(); case 155: - if (lookahead == 'n') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 156: - if (lookahead == '6') ADVANCE(211); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(217); + if (lookahead == '3') ADVANCE(218); + if (lookahead == '6') ADVANCE(219); + if (lookahead == '8') ADVANCE(220); + if (lookahead == 'p') ADVANCE(221); END_STATE(); case 157: - if (lookahead == '2') ADVANCE(212); + if (lookahead == 't') ADVANCE(222); END_STATE(); case 158: - if (lookahead == '4') ADVANCE(213); + if (lookahead == 'i') ADVANCE(223); END_STATE(); case 159: - if (lookahead == '_') ADVANCE(214); + if (lookahead == 'u') ADVANCE(224); END_STATE(); case 160: - if (lookahead == 't') ADVANCE(215); + if (lookahead == 'n') ADVANCE(225); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 'l') ADVANCE(226); END_STATE(); case 162: - if (lookahead == 'e') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 163: - if (lookahead == 's') ADVANCE(217); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 164: - if (lookahead == 'r') ADVANCE(218); + if (lookahead == 'r') ADVANCE(227); END_STATE(); case 165: - if (lookahead == 'r') ADVANCE(219); + if (lookahead == 'e') ADVANCE(197); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(220); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 167: - if (lookahead == 'e') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 168: - if (lookahead == '_') ADVANCE(222); - if (lookahead == 'o') ADVANCE(223); + if (lookahead == 'n') ADVANCE(228); END_STATE(); case 169: - if (lookahead == 'e') ADVANCE(224); + if (lookahead == '6') ADVANCE(229); END_STATE(); case 170: - if (lookahead == 'i') ADVANCE(225); + if (lookahead == '2') ADVANCE(230); END_STATE(); case 171: - if (lookahead == 'c') ADVANCE(226); + if (lookahead == '4') ADVANCE(231); END_STATE(); case 172: - if (lookahead == 'c') ADVANCE(227); + if (lookahead == '_') ADVANCE(232); END_STATE(); case 173: - if (lookahead == 'd') ADVANCE(228); + if (lookahead == 't') ADVANCE(233); END_STATE(); case 174: - if (lookahead == '1') ADVANCE(229); - if (lookahead == '3') ADVANCE(230); - if (lookahead == '6') ADVANCE(231); - if (lookahead == '8') ADVANCE(232); - if (lookahead == 'p') ADVANCE(233); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(234); + if (lookahead == 'a') ADVANCE(234); END_STATE(); case 176: - if (lookahead == 'g') ADVANCE(235); + if (lookahead == 't') ADVANCE(235); END_STATE(); case 177: - if (lookahead == 't') ADVANCE(236); + if (lookahead == 'p') ADVANCE(236); END_STATE(); case 178: if (lookahead == 'e') ADVANCE(237); END_STATE(); case 179: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'i') ADVANCE(238); END_STATE(); case 180: - if (lookahead == 'i') ADVANCE(238); + if (lookahead == 's') ADVANCE(239); END_STATE(); case 181: - if (lookahead == 'r') ADVANCE(239); + if (lookahead == 'r') ADVANCE(240); END_STATE(); case 182: - if (lookahead == 't') ADVANCE(240); + if (lookahead == 'r') ADVANCE(241); END_STATE(); case 183: - if (lookahead == '_') ADVANCE(241); + if (lookahead == 't') ADVANCE(242); END_STATE(); case 184: - if (lookahead == 'r') ADVANCE(242); + if (lookahead == 'e') ADVANCE(243); END_STATE(); case 185: - if (lookahead == 'e') ADVANCE(243); + if (lookahead == '_') ADVANCE(244); + if (lookahead == 'o') ADVANCE(245); END_STATE(); case 186: - if (lookahead == 'c') ADVANCE(244); + if (lookahead == 'e') ADVANCE(246); END_STATE(); case 187: - if (lookahead == 'c') ADVANCE(245); + if (lookahead == 'i') ADVANCE(247); END_STATE(); case 188: - if (lookahead == 'l') ADVANCE(246); + if (lookahead == 'c') ADVANCE(248); END_STATE(); case 189: - if (lookahead == 't') ADVANCE(247); + if (lookahead == 'c') ADVANCE(249); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(248); + if (lookahead == 'a') ADVANCE(250); END_STATE(); case 191: - if (lookahead == 'r') ADVANCE(249); + if (lookahead == 'd') ADVANCE(251); END_STATE(); case 192: - if (lookahead == 'c') ADVANCE(250); + if (lookahead == '1') ADVANCE(252); + if (lookahead == '3') ADVANCE(253); + if (lookahead == '6') ADVANCE(254); + if (lookahead == '8') ADVANCE(255); + if (lookahead == 'p') ADVANCE(256); END_STATE(); case 193: - if (lookahead == 's') ADVANCE(251); + if (lookahead == 'n') ADVANCE(257); END_STATE(); case 194: - if (lookahead == 'l') ADVANCE(252); + if (lookahead == 'g') ADVANCE(258); END_STATE(); case 195: - if (lookahead == 'r') ADVANCE(253); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(254); + if (lookahead == 'e') ADVANCE(260); END_STATE(); case 197: - if (lookahead == 'i') ADVANCE(255); + ACCEPT_TOKEN(sym_false); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'i') ADVANCE(261); END_STATE(); case 199: - if (lookahead == '6') ADVANCE(256); + if (lookahead == 'r') ADVANCE(262); END_STATE(); case 200: - if (lookahead == '2') ADVANCE(257); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 201: - if (lookahead == '4') ADVANCE(258); + if (lookahead == '_') ADVANCE(264); END_STATE(); case 202: - if (lookahead == '_') ADVANCE(259); + if (lookahead == 'r') ADVANCE(265); END_STATE(); case 203: - if (lookahead == 't') ADVANCE(260); + if (lookahead == 'e') ADVANCE(266); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'c') ADVANCE(267); END_STATE(); case 205: - if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'c') ADVANCE(268); END_STATE(); case 206: - if (lookahead == 'l') ADVANCE(262); + if (lookahead == 'l') ADVANCE(269); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(263); + if (lookahead == 't') ADVANCE(270); END_STATE(); case 208: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == 't') ADVANCE(271); END_STATE(); case 209: - if (lookahead == 'n') ADVANCE(264); + if (lookahead == 'r') ADVANCE(272); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'c') ADVANCE(273); END_STATE(); case 211: - if (lookahead == '_') ADVANCE(266); + if (lookahead == 's') ADVANCE(274); END_STATE(); case 212: - if (lookahead == '_') ADVANCE(267); + if (lookahead == 'l') ADVANCE(275); END_STATE(); case 213: - if (lookahead == '_') ADVANCE(268); + if (lookahead == 'r') ADVANCE(276); END_STATE(); case 214: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 't') ADVANCE(277); END_STATE(); case 215: - if (lookahead == 'r') ADVANCE(269); + if (lookahead == 'i') ADVANCE(278); END_STATE(); case 216: - if (lookahead == 't') ADVANCE(270); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(271); + if (lookahead == '6') ADVANCE(279); END_STATE(); case 218: - if (lookahead == 'i') ADVANCE(272); + if (lookahead == '2') ADVANCE(280); END_STATE(); case 219: - if (lookahead == 'n') ADVANCE(273); + if (lookahead == '4') ADVANCE(281); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == '_') ADVANCE(282); END_STATE(); case 221: - if (lookahead == 'd') ADVANCE(274); + if (lookahead == 't') ADVANCE(283); END_STATE(); case 222: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(284); END_STATE(); case 223: - if (lookahead == 'f') ADVANCE(275); + if (lookahead == 'n') ADVANCE(285); END_STATE(); case 224: - if (lookahead == '_') ADVANCE(276); + if (lookahead == 'l') ADVANCE(286); END_STATE(); case 225: - if (lookahead == 'c') ADVANCE(277); + if (lookahead == 'e') ADVANCE(287); END_STATE(); case 226: - if (lookahead == 't') ADVANCE(278); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 227: - if (lookahead == 'h') ADVANCE(279); + if (lookahead == 'n') ADVANCE(288); END_STATE(); case 228: - if (lookahead == 'e') ADVANCE(280); + if (lookahead == 'e') ADVANCE(289); END_STATE(); case 229: - if (lookahead == '6') ADVANCE(281); + if (lookahead == '_') ADVANCE(290); END_STATE(); case 230: - if (lookahead == '2') ADVANCE(282); + if (lookahead == '_') ADVANCE(291); END_STATE(); case 231: - if (lookahead == '4') ADVANCE(283); + if (lookahead == '_') ADVANCE(292); END_STATE(); case 232: - if (lookahead == '_') ADVANCE(284); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 233: - if (lookahead == 't') ADVANCE(285); + if (lookahead == 'r') ADVANCE(293); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'l') ADVANCE(294); END_STATE(); case 235: - if (lookahead == 'n') ADVANCE(286); + if (lookahead == 'u') ADVANCE(295); END_STATE(); case 236: - if (lookahead == 'i') ADVANCE(287); + if (lookahead == 't') ADVANCE(296); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 238: - if (lookahead == 'c') ADVANCE(288); + if (lookahead == 'f') ADVANCE(298); END_STATE(); case 239: - if (lookahead == 'i') ADVANCE(289); + if (lookahead == 't') ADVANCE(299); END_STATE(); case 240: - if (lookahead == 'u') ADVANCE(290); + if (lookahead == 'i') ADVANCE(300); END_STATE(); case 241: - if (lookahead == '_') ADVANCE(291); + if (lookahead == 'n') ADVANCE(301); END_STATE(); case 242: - if (lookahead == 'i') ADVANCE(292); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 243: - if (lookahead == 'd') ADVANCE(293); + if (lookahead == 'd') ADVANCE(302); END_STATE(); case 244: - if (lookahead == 'l') ADVANCE(294); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 245: - if (lookahead == 'a') ADVANCE(295); + if (lookahead == 'f') ADVANCE(303); END_STATE(); case 246: - if (lookahead == 's') ADVANCE(296); + if (lookahead == '_') ADVANCE(304); END_STATE(); case 247: - if (lookahead == 'c') ADVANCE(297); + if (lookahead == 'c') ADVANCE(305); END_STATE(); case 248: - if (lookahead == 'r') ADVANCE(298); + if (lookahead == 't') ADVANCE(306); END_STATE(); case 249: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'h') ADVANCE(307); END_STATE(); case 250: - if (lookahead == 'a') ADVANCE(299); + if (lookahead == 'd') ADVANCE(308); END_STATE(); case 251: - if (lookahead == 'c') ADVANCE(300); + if (lookahead == 'e') ADVANCE(309); END_STATE(); case 252: - if (lookahead == 'i') ADVANCE(301); + if (lookahead == '6') ADVANCE(310); END_STATE(); case 253: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == '2') ADVANCE(311); END_STATE(); case 254: - if (lookahead == 'o') ADVANCE(302); + if (lookahead == '4') ADVANCE(312); END_STATE(); case 255: - if (lookahead == 'g') ADVANCE(303); + if (lookahead == '_') ADVANCE(313); END_STATE(); case 256: - if (lookahead == '_') ADVANCE(304); + if (lookahead == 't') ADVANCE(314); END_STATE(); case 257: - if (lookahead == '_') ADVANCE(305); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 258: - if (lookahead == '_') ADVANCE(306); + if (lookahead == 'n') ADVANCE(315); END_STATE(); case 259: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'i') ADVANCE(316); END_STATE(); case 260: - if (lookahead == 'r') ADVANCE(307); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 261: - if (lookahead == 'u') ADVANCE(308); + if (lookahead == 'c') ADVANCE(317); END_STATE(); case 262: - if (lookahead == 't') ADVANCE(309); + if (lookahead == 'i') ADVANCE(318); END_STATE(); case 263: - if (lookahead == 'd') ADVANCE(310); + if (lookahead == 'u') ADVANCE(319); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == '_') ADVANCE(320); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'i') ADVANCE(321); END_STATE(); case 266: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'd') ADVANCE(322); END_STATE(); case 267: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'l') ADVANCE(323); END_STATE(); case 268: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'a') ADVANCE(324); END_STATE(); case 269: - if (lookahead == '_') ADVANCE(311); + if (lookahead == 's') ADVANCE(325); END_STATE(); case 270: - if (lookahead == 'o') ADVANCE(312); + if (lookahead == 'c') ADVANCE(326); END_STATE(); case 271: - if (lookahead == 'e') ADVANCE(313); + if (lookahead == 'r') ADVANCE(327); END_STATE(); case 272: - if (lookahead == 'c') ADVANCE(314); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'a') ADVANCE(328); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'c') ADVANCE(329); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'i') ADVANCE(330); END_STATE(); case 276: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'o') ADVANCE(331); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'g') ADVANCE(332); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == '_') ADVANCE(333); END_STATE(); case 280: - if (lookahead == 'f') ADVANCE(315); + if (lookahead == '_') ADVANCE(334); END_STATE(); case 281: - if (lookahead == '_') ADVANCE(316); + if (lookahead == '_') ADVANCE(335); END_STATE(); case 282: - if (lookahead == '_') ADVANCE(317); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 283: - if (lookahead == '_') ADVANCE(318); + if (lookahead == 'r') ADVANCE(336); END_STATE(); case 284: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'x') ADVANCE(337); END_STATE(); case 285: - if (lookahead == 'r') ADVANCE(319); + if (lookahead == 'u') ADVANCE(338); END_STATE(); case 286: - if (lookahead == 'e') ADVANCE(320); + if (lookahead == 't') ADVANCE(339); END_STATE(); case 287: - if (lookahead == 'l') ADVANCE(321); + if (lookahead == 'd') ADVANCE(340); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym__Atomic); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 289: - if (lookahead == 'c') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 290: - if (lookahead == 'r') ADVANCE(323); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym___asm__); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 292: - if (lookahead == 'b') ADVANCE(324); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == '_') ADVANCE(341); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'i') ADVANCE(342); END_STATE(); case 295: - if (lookahead == 'l') ADVANCE(325); + if (lookahead == 'r') ADVANCE(343); END_STATE(); case 296: - if (lookahead == 'p') ADVANCE(326); + if (lookahead == 'r') ADVANCE(344); END_STATE(); case 297: - if (lookahead == 'a') ADVANCE(327); + if (lookahead == 'o') ADVANCE(345); END_STATE(); case 298: - if (lookahead == 'i') ADVANCE(328); + if (lookahead == 'f') ADVANCE(346); END_STATE(); case 299: - if (lookahead == 'l') ADVANCE(329); + if (lookahead == 'e') ADVANCE(347); END_STATE(); case 300: - if (lookahead == 'a') ADVANCE(330); + if (lookahead == 'c') ADVANCE(348); END_STATE(); case 301: - if (lookahead == 'g') ADVANCE(331); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 302: - if (lookahead == 'r') ADVANCE(332); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 303: - if (lookahead == 'n') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 304: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 305: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 306: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 307: - if (lookahead == '_') ADVANCE(334); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(335); + if (lookahead == '_') ADVANCE(349); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'f') ADVANCE(350); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == '_') ADVANCE(351); END_STATE(); case 311: - if (lookahead == 't') ADVANCE(140); + if (lookahead == '_') ADVANCE(352); END_STATE(); case 312: - if (lookahead == 'f') ADVANCE(336); + if (lookahead == '_') ADVANCE(353); END_STATE(); case 313: - if (lookahead == 'r') ADVANCE(337); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 314: - if (lookahead == 't') ADVANCE(338); + if (lookahead == 'r') ADVANCE(354); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'e') ADVANCE(355); END_STATE(); case 316: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'l') ADVANCE(356); END_STATE(); case 317: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 318: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'c') ADVANCE(357); END_STATE(); case 319: - if (lookahead == '_') ADVANCE(339); + if (lookahead == 'r') ADVANCE(358); END_STATE(); case 320: - if (lookahead == 'd') ADVANCE(340); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 321: - if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'b') ADVANCE(359); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym__Generic); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 323: - if (lookahead == 'n') ADVANCE(342); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 324: - if (lookahead == 'u') ADVANCE(343); + if (lookahead == 'l') ADVANCE(360); END_STATE(); case 325: - if (lookahead == 'l') ADVANCE(344); + if (lookahead == 'p') ADVANCE(361); END_STATE(); case 326: - if (lookahead == 'e') ADVANCE(345); + if (lookahead == 'a') ADVANCE(362); END_STATE(); case 327: - if (lookahead == 'l') ADVANCE(346); + if (lookahead == 'i') ADVANCE(363); END_STATE(); case 328: - if (lookahead == 'c') ADVANCE(347); + if (lookahead == 'l') ADVANCE(364); END_STATE(); case 329: - if (lookahead == 'l') ADVANCE(348); + if (lookahead == 'a') ADVANCE(365); END_STATE(); case 330: - if (lookahead == 'l') ADVANCE(349); + if (lookahead == 'g') ADVANCE(366); END_STATE(); case 331: - if (lookahead == 'n') ADVANCE(350); + if (lookahead == 'r') ADVANCE(367); END_STATE(); case 332: - if (lookahead == 'c') ADVANCE(351); + if (lookahead == 'n') ADVANCE(368); END_STATE(); case 333: - if (lookahead == 'e') ADVANCE(352); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 334: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_offsetof); + if (lookahead == '_') ADVANCE(369); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 'p') ADVANCE(370); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'e') ADVANCE(371); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 'g') ADVANCE(372); END_STATE(); case 343: - if (lookahead == 't') ADVANCE(353); + if (lookahead == 'n') ADVANCE(373); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym___clrcall); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(374); END_STATE(); case 345: - if (lookahead == 'c') ADVANCE(354); + if (lookahead == 'f') ADVANCE(375); END_STATE(); case 346: - if (lookahead == 'l') ADVANCE(355); + if (lookahead == '_') ADVANCE(376); + END_STATE(); + case 347: + if (lookahead == 'r') ADVANCE(377); + END_STATE(); + case 348: + if (lookahead == 't') ADVANCE(378); + END_STATE(); + case 349: + if (lookahead == 'l') ADVANCE(379); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_typedef); + END_STATE(); + case 351: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 352: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 353: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 354: + if (lookahead == '_') ADVANCE(380); + END_STATE(); + case 355: + if (lookahead == 'd') ADVANCE(381); + END_STATE(); + case 356: + if (lookahead == 'e') ADVANCE(382); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym__Generic); + END_STATE(); + case 358: + if (lookahead == 'n') ADVANCE(383); + END_STATE(); + case 359: + if (lookahead == 'u') ADVANCE(384); + END_STATE(); + case 360: + if (lookahead == 'l') ADVANCE(385); + END_STATE(); + case 361: + if (lookahead == 'e') ADVANCE(386); + END_STATE(); + case 362: + if (lookahead == 'l') ADVANCE(387); + END_STATE(); + case 363: + if (lookahead == 'c') ADVANCE(388); + END_STATE(); + case 364: + if (lookahead == 'l') ADVANCE(389); + END_STATE(); + case 365: + if (lookahead == 'l') ADVANCE(390); + END_STATE(); + case 366: + if (lookahead == 'n') ADVANCE(391); + END_STATE(); + case 367: + if (lookahead == 'c') ADVANCE(392); + END_STATE(); + case 368: + if (lookahead == 'e') ADVANCE(393); + END_STATE(); + case 369: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 370: + if (lookahead == 'r') ADVANCE(394); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 372: + if (lookahead == 'n') ADVANCE(395); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_noreturn); + END_STATE(); + case 374: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_offsetof); + END_STATE(); + case 376: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_register); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_restrict); + END_STATE(); + case 379: + if (lookahead == 'o') ADVANCE(396); + END_STATE(); + case 380: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 382: + ACCEPT_TOKEN(anon_sym_volatile); + END_STATE(); + case 383: + ACCEPT_TOKEN(anon_sym__Noreturn); + END_STATE(); + case 384: + if (lookahead == 't') ADVANCE(397); + END_STATE(); + case 385: + ACCEPT_TOKEN(anon_sym___clrcall); + END_STATE(); + case 386: + if (lookahead == 'c') ADVANCE(398); + END_STATE(); + case 387: + if (lookahead == 'l') ADVANCE(399); + END_STATE(); + case 388: + if (lookahead == 't') ADVANCE(400); + END_STATE(); + case 389: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 390: + if (lookahead == 'l') ADVANCE(401); END_STATE(); - case 347: - if (lookahead == 't') ADVANCE(356); + case 391: + if (lookahead == 'e') ADVANCE(402); END_STATE(); - case 348: - ACCEPT_TOKEN(anon_sym___stdcall); + case 392: + if (lookahead == 'a') ADVANCE(403); END_STATE(); - case 349: - if (lookahead == 'l') ADVANCE(357); + case 393: + if (lookahead == 'd') ADVANCE(404); END_STATE(); - case 350: - if (lookahead == 'e') ADVANCE(358); + case 394: + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); - case 351: - if (lookahead == 'a') ADVANCE(359); + case 395: + if (lookahead == '_') ADVANCE(405); END_STATE(); - case 352: - if (lookahead == 'd') ADVANCE(360); + case 396: + if (lookahead == 'c') ADVANCE(406); END_STATE(); - case 353: - if (lookahead == 'e') ADVANCE(361); + case 397: + if (lookahead == 'e') ADVANCE(407); END_STATE(); - case 354: + case 398: ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); - case 355: + case 399: ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); - case 356: + case 400: ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(362); + if (lookahead == '_') ADVANCE(408); END_STATE(); - case 357: + case 401: ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); - case 358: - if (lookahead == 'd') ADVANCE(363); + case 402: + if (lookahead == 'd') ADVANCE(409); END_STATE(); - case 359: - if (lookahead == 'l') ADVANCE(364); + case 403: + if (lookahead == 'l') ADVANCE(410); END_STATE(); - case 360: + case 404: ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); - case 361: - if (lookahead == '_') ADVANCE(365); + case 405: + if (lookahead == 't') ADVANCE(153); END_STATE(); - case 362: - if (lookahead == '_') ADVANCE(366); + case 406: + if (lookahead == 'a') ADVANCE(411); END_STATE(); - case 363: + case 407: + if (lookahead == '_') ADVANCE(412); + END_STATE(); + case 408: + if (lookahead == '_') ADVANCE(413); + END_STATE(); + case 409: ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); - case 364: - if (lookahead == 'l') ADVANCE(367); + case 410: + if (lookahead == 'l') ADVANCE(414); END_STATE(); - case 365: - if (lookahead == '_') ADVANCE(368); + case 411: + if (lookahead == 'l') ADVANCE(415); END_STATE(); - case 366: + case 412: + if (lookahead == '_') ADVANCE(416); + END_STATE(); + case 413: ACCEPT_TOKEN(anon_sym___restrict__); END_STATE(); - case 367: + case 414: ACCEPT_TOKEN(anon_sym___vectorcall); END_STATE(); - case 368: + case 415: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 416: ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); default: @@ -11695,1622 +12457,1863 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 83}, - [2] = {.lex_state = 28}, - [3] = {.lex_state = 28}, - [4] = {.lex_state = 28}, - [5] = {.lex_state = 28}, - [6] = {.lex_state = 28}, - [7] = {.lex_state = 28}, - [8] = {.lex_state = 28}, - [9] = {.lex_state = 28}, - [10] = {.lex_state = 28}, - [11] = {.lex_state = 28}, - [12] = {.lex_state = 28}, - [13] = {.lex_state = 28}, - [14] = {.lex_state = 28}, - [15] = {.lex_state = 28}, - [16] = {.lex_state = 28}, - [17] = {.lex_state = 28}, - [18] = {.lex_state = 28}, - [19] = {.lex_state = 28}, - [20] = {.lex_state = 28}, - [21] = {.lex_state = 83}, - [22] = {.lex_state = 29}, - [23] = {.lex_state = 83}, - [24] = {.lex_state = 83}, - [25] = {.lex_state = 83}, - [26] = {.lex_state = 83}, - [27] = {.lex_state = 29}, - [28] = {.lex_state = 29}, - [29] = {.lex_state = 83}, - [30] = {.lex_state = 83}, - [31] = {.lex_state = 83}, - [32] = {.lex_state = 83}, - [33] = {.lex_state = 83}, - [34] = {.lex_state = 83}, - [35] = {.lex_state = 83}, - [36] = {.lex_state = 83}, - [37] = {.lex_state = 83}, - [38] = {.lex_state = 83}, - [39] = {.lex_state = 83}, - [40] = {.lex_state = 83}, - [41] = {.lex_state = 83}, - [42] = {.lex_state = 83}, - [43] = {.lex_state = 28}, - [44] = {.lex_state = 28}, - [45] = {.lex_state = 28}, - [46] = {.lex_state = 28}, - [47] = {.lex_state = 28}, - [48] = {.lex_state = 29}, - [49] = {.lex_state = 83}, - [50] = {.lex_state = 83}, - [51] = {.lex_state = 83}, - [52] = {.lex_state = 29}, - [53] = {.lex_state = 29}, - [54] = {.lex_state = 83}, - [55] = {.lex_state = 83}, - [56] = {.lex_state = 83}, - [57] = {.lex_state = 29}, - [58] = {.lex_state = 29}, - [59] = {.lex_state = 83}, - [60] = {.lex_state = 83}, - [61] = {.lex_state = 83}, - [62] = {.lex_state = 83}, - [63] = {.lex_state = 83}, - [64] = {.lex_state = 83}, - [65] = {.lex_state = 83}, - [66] = {.lex_state = 83}, - [67] = {.lex_state = 27}, - [68] = {.lex_state = 28}, - [69] = {.lex_state = 28}, - [70] = {.lex_state = 28}, - [71] = {.lex_state = 28}, - [72] = {.lex_state = 28}, - [73] = {.lex_state = 28}, - [74] = {.lex_state = 28}, - [75] = {.lex_state = 28}, - [76] = {.lex_state = 28}, - [77] = {.lex_state = 28}, - [78] = {.lex_state = 28}, - [79] = {.lex_state = 28}, - [80] = {.lex_state = 28}, - [81] = {.lex_state = 28}, - [82] = {.lex_state = 28}, - [83] = {.lex_state = 28}, - [84] = {.lex_state = 28}, - [85] = {.lex_state = 28}, - [86] = {.lex_state = 83}, - [87] = {.lex_state = 28}, - [88] = {.lex_state = 28}, - [89] = {.lex_state = 28}, - [90] = {.lex_state = 83}, - [91] = {.lex_state = 28}, - [92] = {.lex_state = 28}, - [93] = {.lex_state = 28}, - [94] = {.lex_state = 28}, - [95] = {.lex_state = 28}, - [96] = {.lex_state = 28}, - [97] = {.lex_state = 28}, - [98] = {.lex_state = 28}, - [99] = {.lex_state = 28}, - [100] = {.lex_state = 28}, - [101] = {.lex_state = 28}, - [102] = {.lex_state = 28}, - [103] = {.lex_state = 28}, - [104] = {.lex_state = 28}, - [105] = {.lex_state = 28}, - [106] = {.lex_state = 28}, - [107] = {.lex_state = 28}, - [108] = {.lex_state = 28}, - [109] = {.lex_state = 28}, - [110] = {.lex_state = 27}, - [111] = {.lex_state = 28}, - [112] = {.lex_state = 83}, - [113] = {.lex_state = 83}, - [114] = {.lex_state = 83}, - [115] = {.lex_state = 28}, - [116] = {.lex_state = 83}, - [117] = {.lex_state = 83}, - [118] = {.lex_state = 83}, - [119] = {.lex_state = 83}, - [120] = {.lex_state = 83}, - [121] = {.lex_state = 83}, - [122] = {.lex_state = 83}, - [123] = {.lex_state = 83}, - [124] = {.lex_state = 83}, - [125] = {.lex_state = 28}, - [126] = {.lex_state = 28}, - [127] = {.lex_state = 83}, - [128] = {.lex_state = 83}, - [129] = {.lex_state = 83}, - [130] = {.lex_state = 83}, - [131] = {.lex_state = 83}, - [132] = {.lex_state = 83}, - [133] = {.lex_state = 83}, - [134] = {.lex_state = 83}, - [135] = {.lex_state = 83}, - [136] = {.lex_state = 28}, - [137] = {.lex_state = 83}, - [138] = {.lex_state = 83}, - [139] = {.lex_state = 83}, - [140] = {.lex_state = 28}, - [141] = {.lex_state = 83}, - [142] = {.lex_state = 83}, - [143] = {.lex_state = 83}, - [144] = {.lex_state = 83}, - [145] = {.lex_state = 83}, - [146] = {.lex_state = 28}, - [147] = {.lex_state = 83}, - [148] = {.lex_state = 83}, - [149] = {.lex_state = 83}, - [150] = {.lex_state = 28}, - [151] = {.lex_state = 28}, - [152] = {.lex_state = 83}, - [153] = {.lex_state = 83}, - [154] = {.lex_state = 28}, - [155] = {.lex_state = 28}, - [156] = {.lex_state = 28}, - [157] = {.lex_state = 28}, - [158] = {.lex_state = 83}, - [159] = {.lex_state = 83}, - [160] = {.lex_state = 29}, - [161] = {.lex_state = 83}, - [162] = {.lex_state = 83}, - [163] = {.lex_state = 83}, - [164] = {.lex_state = 83}, - [165] = {.lex_state = 83}, - [166] = {.lex_state = 83}, - [167] = {.lex_state = 28}, - [168] = {.lex_state = 83}, - [169] = {.lex_state = 83}, - [170] = {.lex_state = 83}, - [171] = {.lex_state = 83}, - [172] = {.lex_state = 83}, - [173] = {.lex_state = 83}, - [174] = {.lex_state = 83}, - [175] = {.lex_state = 83}, - [176] = {.lex_state = 83}, - [177] = {.lex_state = 28}, - [178] = {.lex_state = 83}, - [179] = {.lex_state = 83}, - [180] = {.lex_state = 83}, - [181] = {.lex_state = 28}, - [182] = {.lex_state = 83}, - [183] = {.lex_state = 83}, - [184] = {.lex_state = 83}, - [185] = {.lex_state = 83}, - [186] = {.lex_state = 83}, - [187] = {.lex_state = 28}, - [188] = {.lex_state = 83}, - [189] = {.lex_state = 83}, - [190] = {.lex_state = 83}, - [191] = {.lex_state = 83}, - [192] = {.lex_state = 83}, - [193] = {.lex_state = 83}, - [194] = {.lex_state = 83}, - [195] = {.lex_state = 83}, - [196] = {.lex_state = 83}, - [197] = {.lex_state = 28}, - [198] = {.lex_state = 83}, - [199] = {.lex_state = 83}, - [200] = {.lex_state = 28}, - [201] = {.lex_state = 83}, - [202] = {.lex_state = 83}, - [203] = {.lex_state = 28}, - [204] = {.lex_state = 83}, - [205] = {.lex_state = 28}, - [206] = {.lex_state = 83}, - [207] = {.lex_state = 83}, - [208] = {.lex_state = 83}, - [209] = {.lex_state = 83}, - [210] = {.lex_state = 83}, - [211] = {.lex_state = 28}, - [212] = {.lex_state = 83}, - [213] = {.lex_state = 29}, - [214] = {.lex_state = 83}, - [215] = {.lex_state = 83}, - [216] = {.lex_state = 83}, - [217] = {.lex_state = 29}, - [218] = {.lex_state = 29}, - [219] = {.lex_state = 83}, - [220] = {.lex_state = 29}, - [221] = {.lex_state = 83}, - [222] = {.lex_state = 83}, - [223] = {.lex_state = 83}, - [224] = {.lex_state = 83}, - [225] = {.lex_state = 83}, - [226] = {.lex_state = 83}, - [227] = {.lex_state = 83}, - [228] = {.lex_state = 29}, - [229] = {.lex_state = 83}, - [230] = {.lex_state = 29}, - [231] = {.lex_state = 83}, - [232] = {.lex_state = 83}, - [233] = {.lex_state = 29}, - [234] = {.lex_state = 29}, - [235] = {.lex_state = 29}, - [236] = {.lex_state = 29}, - [237] = {.lex_state = 83}, - [238] = {.lex_state = 83}, - [239] = {.lex_state = 83}, - [240] = {.lex_state = 29}, - [241] = {.lex_state = 83}, - [242] = {.lex_state = 83}, - [243] = {.lex_state = 29}, - [244] = {.lex_state = 83}, - [245] = {.lex_state = 83}, - [246] = {.lex_state = 83}, - [247] = {.lex_state = 83}, - [248] = {.lex_state = 83}, - [249] = {.lex_state = 83}, - [250] = {.lex_state = 83}, - [251] = {.lex_state = 29}, - [252] = {.lex_state = 83}, - [253] = {.lex_state = 83}, - [254] = {.lex_state = 83}, - [255] = {.lex_state = 83}, - [256] = {.lex_state = 29}, - [257] = {.lex_state = 29}, - [258] = {.lex_state = 83}, - [259] = {.lex_state = 29}, - [260] = {.lex_state = 83}, - [261] = {.lex_state = 83}, - [262] = {.lex_state = 83}, - [263] = {.lex_state = 29}, - [264] = {.lex_state = 83}, - [265] = {.lex_state = 83}, - [266] = {.lex_state = 83}, - [267] = {.lex_state = 83}, - [268] = {.lex_state = 83}, - [269] = {.lex_state = 83}, - [270] = {.lex_state = 29}, - [271] = {.lex_state = 29}, - [272] = {.lex_state = 29}, - [273] = {.lex_state = 83}, - [274] = {.lex_state = 29}, - [275] = {.lex_state = 29}, - [276] = {.lex_state = 29}, - [277] = {.lex_state = 83}, - [278] = {.lex_state = 83}, - [279] = {.lex_state = 83}, - [280] = {.lex_state = 83}, - [281] = {.lex_state = 83}, - [282] = {.lex_state = 83}, - [283] = {.lex_state = 29}, - [284] = {.lex_state = 83}, - [285] = {.lex_state = 83}, - [286] = {.lex_state = 83}, - [287] = {.lex_state = 29}, - [288] = {.lex_state = 29}, - [289] = {.lex_state = 29}, - [290] = {.lex_state = 29}, - [291] = {.lex_state = 29}, - [292] = {.lex_state = 83}, - [293] = {.lex_state = 29}, - [294] = {.lex_state = 83}, - [295] = {.lex_state = 29}, - [296] = {.lex_state = 29}, - [297] = {.lex_state = 83}, - [298] = {.lex_state = 83}, - [299] = {.lex_state = 83}, - [300] = {.lex_state = 83}, - [301] = {.lex_state = 83}, - [302] = {.lex_state = 29}, - [303] = {.lex_state = 83}, - [304] = {.lex_state = 29}, - [305] = {.lex_state = 83}, - [306] = {.lex_state = 83}, - [307] = {.lex_state = 83}, - [308] = {.lex_state = 83}, - [309] = {.lex_state = 83}, - [310] = {.lex_state = 83}, - [311] = {.lex_state = 83}, - [312] = {.lex_state = 83}, - [313] = {.lex_state = 83}, - [314] = {.lex_state = 83}, - [315] = {.lex_state = 83}, - [316] = {.lex_state = 83}, - [317] = {.lex_state = 29}, - [318] = {.lex_state = 83}, - [319] = {.lex_state = 83}, - [320] = {.lex_state = 29}, - [321] = {.lex_state = 83}, - [322] = {.lex_state = 83}, - [323] = {.lex_state = 29}, - [324] = {.lex_state = 29}, - [325] = {.lex_state = 83}, - [326] = {.lex_state = 83}, - [327] = {.lex_state = 83}, - [328] = {.lex_state = 29}, - [329] = {.lex_state = 29}, - [330] = {.lex_state = 83}, - [331] = {.lex_state = 29}, - [332] = {.lex_state = 83}, - [333] = {.lex_state = 83}, - [334] = {.lex_state = 83}, - [335] = {.lex_state = 83}, - [336] = {.lex_state = 29}, - [337] = {.lex_state = 83}, - [338] = {.lex_state = 29}, - [339] = {.lex_state = 29}, - [340] = {.lex_state = 29}, - [341] = {.lex_state = 83}, - [342] = {.lex_state = 83}, - [343] = {.lex_state = 29}, - [344] = {.lex_state = 83}, - [345] = {.lex_state = 83}, - [346] = {.lex_state = 29}, - [347] = {.lex_state = 29}, - [348] = {.lex_state = 83}, - [349] = {.lex_state = 83}, - [350] = {.lex_state = 83}, - [351] = {.lex_state = 83}, - [352] = {.lex_state = 83}, - [353] = {.lex_state = 83}, - [354] = {.lex_state = 83}, - [355] = {.lex_state = 83}, - [356] = {.lex_state = 29}, - [357] = {.lex_state = 83}, - [358] = {.lex_state = 83}, - [359] = {.lex_state = 83}, - [360] = {.lex_state = 83}, - [361] = {.lex_state = 29}, - [362] = {.lex_state = 29}, - [363] = {.lex_state = 29}, - [364] = {.lex_state = 83}, - [365] = {.lex_state = 83}, - [366] = {.lex_state = 83}, - [367] = {.lex_state = 83}, - [368] = {.lex_state = 83}, - [369] = {.lex_state = 83}, - [370] = {.lex_state = 83}, - [371] = {.lex_state = 29}, - [372] = {.lex_state = 83}, - [373] = {.lex_state = 29}, - [374] = {.lex_state = 83}, - [375] = {.lex_state = 83}, - [376] = {.lex_state = 29}, - [377] = {.lex_state = 29}, - [378] = {.lex_state = 83}, - [379] = {.lex_state = 29}, - [380] = {.lex_state = 83}, - [381] = {.lex_state = 83}, - [382] = {.lex_state = 83}, - [383] = {.lex_state = 83}, - [384] = {.lex_state = 83}, - [385] = {.lex_state = 29}, - [386] = {.lex_state = 83}, - [387] = {.lex_state = 83}, - [388] = {.lex_state = 29}, - [389] = {.lex_state = 29}, - [390] = {.lex_state = 83}, - [391] = {.lex_state = 83}, - [392] = {.lex_state = 29}, - [393] = {.lex_state = 83}, - [394] = {.lex_state = 83}, - [395] = {.lex_state = 83}, - [396] = {.lex_state = 83}, - [397] = {.lex_state = 83}, - [398] = {.lex_state = 83}, - [399] = {.lex_state = 83}, - [400] = {.lex_state = 27}, - [401] = {.lex_state = 83}, - [402] = {.lex_state = 27}, - [403] = {.lex_state = 83}, - [404] = {.lex_state = 83}, - [405] = {.lex_state = 83}, - [406] = {.lex_state = 33}, - [407] = {.lex_state = 83}, - [408] = {.lex_state = 83}, - [409] = {.lex_state = 83}, - [410] = {.lex_state = 83}, - [411] = {.lex_state = 83}, - [412] = {.lex_state = 83}, - [413] = {.lex_state = 83}, - [414] = {.lex_state = 83}, - [415] = {.lex_state = 83}, - [416] = {.lex_state = 83}, - [417] = {.lex_state = 83}, - [418] = {.lex_state = 83}, - [419] = {.lex_state = 83}, - [420] = {.lex_state = 83}, - [421] = {.lex_state = 33}, - [422] = {.lex_state = 33}, - [423] = {.lex_state = 33}, - [424] = {.lex_state = 33}, - [425] = {.lex_state = 33}, - [426] = {.lex_state = 33}, - [427] = {.lex_state = 33}, - [428] = {.lex_state = 33}, - [429] = {.lex_state = 33}, - [430] = {.lex_state = 33}, - [431] = {.lex_state = 33}, - [432] = {.lex_state = 33}, - [433] = {.lex_state = 33}, - [434] = {.lex_state = 33}, - [435] = {.lex_state = 34}, - [436] = {.lex_state = 34}, - [437] = {.lex_state = 34}, - [438] = {.lex_state = 34}, - [439] = {.lex_state = 34}, - [440] = {.lex_state = 34}, - [441] = {.lex_state = 34}, - [442] = {.lex_state = 34}, - [443] = {.lex_state = 33}, - [444] = {.lex_state = 34}, - [445] = {.lex_state = 34}, - [446] = {.lex_state = 83}, - [447] = {.lex_state = 83}, - [448] = {.lex_state = 32}, - [449] = {.lex_state = 34}, - [450] = {.lex_state = 34}, - [451] = {.lex_state = 32}, - [452] = {.lex_state = 32}, - [453] = {.lex_state = 83}, - [454] = {.lex_state = 83}, - [455] = {.lex_state = 83}, - [456] = {.lex_state = 83}, - [457] = {.lex_state = 83}, - [458] = {.lex_state = 83}, - [459] = {.lex_state = 83}, - [460] = {.lex_state = 83}, - [461] = {.lex_state = 83}, - [462] = {.lex_state = 83}, - [463] = {.lex_state = 83}, - [464] = {.lex_state = 33}, - [465] = {.lex_state = 83}, - [466] = {.lex_state = 83}, - [467] = {.lex_state = 83}, - [468] = {.lex_state = 83}, - [469] = {.lex_state = 83}, - [470] = {.lex_state = 83}, - [471] = {.lex_state = 83}, - [472] = {.lex_state = 83}, - [473] = {.lex_state = 83}, - [474] = {.lex_state = 83}, - [475] = {.lex_state = 83}, - [476] = {.lex_state = 83}, - [477] = {.lex_state = 83}, - [478] = {.lex_state = 83}, - [479] = {.lex_state = 83}, - [480] = {.lex_state = 83}, - [481] = {.lex_state = 83}, - [482] = {.lex_state = 83}, - [483] = {.lex_state = 83}, - [484] = {.lex_state = 83}, - [485] = {.lex_state = 83}, - [486] = {.lex_state = 83}, - [487] = {.lex_state = 83}, - [488] = {.lex_state = 83}, - [489] = {.lex_state = 83}, - [490] = {.lex_state = 83}, - [491] = {.lex_state = 83}, - [492] = {.lex_state = 83}, - [493] = {.lex_state = 83}, - [494] = {.lex_state = 83}, - [495] = {.lex_state = 83}, - [496] = {.lex_state = 83}, - [497] = {.lex_state = 83}, - [498] = {.lex_state = 83}, - [499] = {.lex_state = 83}, - [500] = {.lex_state = 83}, - [501] = {.lex_state = 83}, - [502] = {.lex_state = 83}, - [503] = {.lex_state = 83}, - [504] = {.lex_state = 83}, - [505] = {.lex_state = 83}, - [506] = {.lex_state = 31}, - [507] = {.lex_state = 83}, - [508] = {.lex_state = 83}, - [509] = {.lex_state = 83}, - [510] = {.lex_state = 83}, - [511] = {.lex_state = 83}, - [512] = {.lex_state = 83}, - [513] = {.lex_state = 31}, - [514] = {.lex_state = 83}, - [515] = {.lex_state = 31}, - [516] = {.lex_state = 83}, - [517] = {.lex_state = 83}, - [518] = {.lex_state = 83}, - [519] = {.lex_state = 83}, - [520] = {.lex_state = 83}, - [521] = {.lex_state = 33}, - [522] = {.lex_state = 83}, - [523] = {.lex_state = 83}, - [524] = {.lex_state = 83}, - [525] = {.lex_state = 83}, - [526] = {.lex_state = 83}, - [527] = {.lex_state = 83}, - [528] = {.lex_state = 83}, - [529] = {.lex_state = 83}, - [530] = {.lex_state = 83}, - [531] = {.lex_state = 83}, - [532] = {.lex_state = 83}, - [533] = {.lex_state = 33}, - [534] = {.lex_state = 83}, - [535] = {.lex_state = 33}, - [536] = {.lex_state = 83}, - [537] = {.lex_state = 83}, - [538] = {.lex_state = 83}, - [539] = {.lex_state = 83}, - [540] = {.lex_state = 83}, - [541] = {.lex_state = 83}, - [542] = {.lex_state = 83}, - [543] = {.lex_state = 83}, - [544] = {.lex_state = 83}, - [545] = {.lex_state = 83}, - [546] = {.lex_state = 83}, - [547] = {.lex_state = 83}, - [548] = {.lex_state = 33}, - [549] = {.lex_state = 83}, - [550] = {.lex_state = 83}, - [551] = {.lex_state = 83}, - [552] = {.lex_state = 83}, - [553] = {.lex_state = 83}, - [554] = {.lex_state = 83}, - [555] = {.lex_state = 83}, - [556] = {.lex_state = 83}, - [557] = {.lex_state = 83}, - [558] = {.lex_state = 83}, - [559] = {.lex_state = 83}, - [560] = {.lex_state = 83}, - [561] = {.lex_state = 83}, - [562] = {.lex_state = 83}, - [563] = {.lex_state = 83}, - [564] = {.lex_state = 83}, - [565] = {.lex_state = 83}, - [566] = {.lex_state = 83}, - [567] = {.lex_state = 83}, - [568] = {.lex_state = 83}, - [569] = {.lex_state = 83}, - [570] = {.lex_state = 83}, - [571] = {.lex_state = 83}, - [572] = {.lex_state = 83}, - [573] = {.lex_state = 83}, - [574] = {.lex_state = 83}, - [575] = {.lex_state = 83}, - [576] = {.lex_state = 83}, - [577] = {.lex_state = 83}, - [578] = {.lex_state = 83}, - [579] = {.lex_state = 83}, - [580] = {.lex_state = 83}, - [581] = {.lex_state = 83}, - [582] = {.lex_state = 83}, - [583] = {.lex_state = 83}, - [584] = {.lex_state = 83}, - [585] = {.lex_state = 83}, - [586] = {.lex_state = 83}, - [587] = {.lex_state = 83}, - [588] = {.lex_state = 83}, - [589] = {.lex_state = 83}, - [590] = {.lex_state = 83}, - [591] = {.lex_state = 83}, - [592] = {.lex_state = 83}, - [593] = {.lex_state = 83}, - [594] = {.lex_state = 83}, - [595] = {.lex_state = 83}, - [596] = {.lex_state = 83}, - [597] = {.lex_state = 83}, - [598] = {.lex_state = 83}, - [599] = {.lex_state = 83}, - [600] = {.lex_state = 83}, - [601] = {.lex_state = 83}, - [602] = {.lex_state = 31}, - [603] = {.lex_state = 31}, - [604] = {.lex_state = 34}, - [605] = {.lex_state = 83}, - [606] = {.lex_state = 83}, - [607] = {.lex_state = 83}, - [608] = {.lex_state = 34}, - [609] = {.lex_state = 34}, - [610] = {.lex_state = 34}, - [611] = {.lex_state = 34}, - [612] = {.lex_state = 34}, - [613] = {.lex_state = 32}, - [614] = {.lex_state = 34}, - [615] = {.lex_state = 34}, - [616] = {.lex_state = 34}, - [617] = {.lex_state = 34}, - [618] = {.lex_state = 34}, - [619] = {.lex_state = 34}, - [620] = {.lex_state = 34}, - [621] = {.lex_state = 34}, - [622] = {.lex_state = 34}, - [623] = {.lex_state = 32}, - [624] = {.lex_state = 34}, - [625] = {.lex_state = 34}, - [626] = {.lex_state = 34}, - [627] = {.lex_state = 34}, - [628] = {.lex_state = 34}, - [629] = {.lex_state = 34}, - [630] = {.lex_state = 34}, - [631] = {.lex_state = 33}, - [632] = {.lex_state = 34}, - [633] = {.lex_state = 34}, - [634] = {.lex_state = 34}, - [635] = {.lex_state = 34}, - [636] = {.lex_state = 34}, - [637] = {.lex_state = 34}, - [638] = {.lex_state = 34}, - [639] = {.lex_state = 34}, - [640] = {.lex_state = 34}, - [641] = {.lex_state = 34}, - [642] = {.lex_state = 34}, - [643] = {.lex_state = 34}, - [644] = {.lex_state = 34}, - [645] = {.lex_state = 34}, - [646] = {.lex_state = 34}, - [647] = {.lex_state = 34}, - [648] = {.lex_state = 34}, - [649] = {.lex_state = 34}, - [650] = {.lex_state = 34}, - [651] = {.lex_state = 34}, - [652] = {.lex_state = 32}, - [653] = {.lex_state = 34}, - [654] = {.lex_state = 34}, - [655] = {.lex_state = 34}, - [656] = {.lex_state = 34}, - [657] = {.lex_state = 33}, - [658] = {.lex_state = 34}, - [659] = {.lex_state = 34}, - [660] = {.lex_state = 34}, - [661] = {.lex_state = 34}, - [662] = {.lex_state = 34}, - [663] = {.lex_state = 34}, - [664] = {.lex_state = 34}, - [665] = {.lex_state = 34}, - [666] = {.lex_state = 34}, - [667] = {.lex_state = 33}, - [668] = {.lex_state = 34}, - [669] = {.lex_state = 83}, - [670] = {.lex_state = 33}, - [671] = {.lex_state = 34}, - [672] = {.lex_state = 34}, - [673] = {.lex_state = 33}, - [674] = {.lex_state = 34}, - [675] = {.lex_state = 34}, - [676] = {.lex_state = 34}, - [677] = {.lex_state = 34}, - [678] = {.lex_state = 34}, - [679] = {.lex_state = 34}, - [680] = {.lex_state = 34}, - [681] = {.lex_state = 34}, - [682] = {.lex_state = 34}, - [683] = {.lex_state = 33}, - [684] = {.lex_state = 34}, - [685] = {.lex_state = 34}, - [686] = {.lex_state = 34}, - [687] = {.lex_state = 33}, - [688] = {.lex_state = 34}, - [689] = {.lex_state = 33}, - [690] = {.lex_state = 34}, - [691] = {.lex_state = 83}, - [692] = {.lex_state = 33}, - [693] = {.lex_state = 33}, - [694] = {.lex_state = 34}, - [695] = {.lex_state = 33}, - [696] = {.lex_state = 33}, - [697] = {.lex_state = 33}, - [698] = {.lex_state = 33}, - [699] = {.lex_state = 33}, - [700] = {.lex_state = 33}, - [701] = {.lex_state = 33}, - [702] = {.lex_state = 33}, - [703] = {.lex_state = 33}, - [704] = {.lex_state = 33}, - [705] = {.lex_state = 33}, - [706] = {.lex_state = 33}, - [707] = {.lex_state = 34}, - [708] = {.lex_state = 33}, - [709] = {.lex_state = 33}, - [710] = {.lex_state = 34}, - [711] = {.lex_state = 34}, - [712] = {.lex_state = 34}, - [713] = {.lex_state = 34}, - [714] = {.lex_state = 33}, - [715] = {.lex_state = 34}, - [716] = {.lex_state = 33}, - [717] = {.lex_state = 33}, - [718] = {.lex_state = 33}, - [719] = {.lex_state = 34}, - [720] = {.lex_state = 33}, - [721] = {.lex_state = 33}, - [722] = {.lex_state = 33}, - [723] = {.lex_state = 34}, - [724] = {.lex_state = 34}, - [725] = {.lex_state = 34}, - [726] = {.lex_state = 34}, - [727] = {.lex_state = 34}, - [728] = {.lex_state = 33}, - [729] = {.lex_state = 33}, - [730] = {.lex_state = 33}, - [731] = {.lex_state = 33}, - [732] = {.lex_state = 33}, - [733] = {.lex_state = 32}, - [734] = {.lex_state = 34}, - [735] = {.lex_state = 34}, - [736] = {.lex_state = 34}, - [737] = {.lex_state = 34}, - [738] = {.lex_state = 34}, - [739] = {.lex_state = 33}, - [740] = {.lex_state = 32}, - [741] = {.lex_state = 34}, - [742] = {.lex_state = 34}, - [743] = {.lex_state = 34}, - [744] = {.lex_state = 33}, - [745] = {.lex_state = 33}, - [746] = {.lex_state = 33}, - [747] = {.lex_state = 31}, - [748] = {.lex_state = 32}, - [749] = {.lex_state = 32}, - [750] = {.lex_state = 34}, - [751] = {.lex_state = 32}, - [752] = {.lex_state = 31}, - [753] = {.lex_state = 32}, - [754] = {.lex_state = 31}, - [755] = {.lex_state = 32}, - [756] = {.lex_state = 32}, - [757] = {.lex_state = 32}, - [758] = {.lex_state = 32}, - [759] = {.lex_state = 32}, - [760] = {.lex_state = 31}, - [761] = {.lex_state = 32}, - [762] = {.lex_state = 34}, - [763] = {.lex_state = 34}, - [764] = {.lex_state = 34}, - [765] = {.lex_state = 34}, - [766] = {.lex_state = 32}, - [767] = {.lex_state = 32}, - [768] = {.lex_state = 34}, - [769] = {.lex_state = 32}, - [770] = {.lex_state = 32}, - [771] = {.lex_state = 32}, - [772] = {.lex_state = 34}, - [773] = {.lex_state = 34}, - [774] = {.lex_state = 34}, - [775] = {.lex_state = 32}, - [776] = {.lex_state = 34}, - [777] = {.lex_state = 34}, - [778] = {.lex_state = 34}, - [779] = {.lex_state = 34}, - [780] = {.lex_state = 32}, - [781] = {.lex_state = 34}, - [782] = {.lex_state = 34}, - [783] = {.lex_state = 33}, - [784] = {.lex_state = 34}, - [785] = {.lex_state = 34}, - [786] = {.lex_state = 34}, - [787] = {.lex_state = 34}, - [788] = {.lex_state = 34}, - [789] = {.lex_state = 34}, - [790] = {.lex_state = 34}, - [791] = {.lex_state = 34}, - [792] = {.lex_state = 34}, - [793] = {.lex_state = 34}, - [794] = {.lex_state = 34}, - [795] = {.lex_state = 34}, - [796] = {.lex_state = 34}, - [797] = {.lex_state = 34}, - [798] = {.lex_state = 34}, - [799] = {.lex_state = 34}, - [800] = {.lex_state = 33}, - [801] = {.lex_state = 34}, - [802] = {.lex_state = 34}, - [803] = {.lex_state = 34}, - [804] = {.lex_state = 34}, - [805] = {.lex_state = 34}, - [806] = {.lex_state = 34}, - [807] = {.lex_state = 34}, - [808] = {.lex_state = 34}, - [809] = {.lex_state = 33}, - [810] = {.lex_state = 34}, - [811] = {.lex_state = 34}, - [812] = {.lex_state = 34}, - [813] = {.lex_state = 34}, - [814] = {.lex_state = 34}, - [815] = {.lex_state = 34}, - [816] = {.lex_state = 34}, - [817] = {.lex_state = 34}, - [818] = {.lex_state = 34}, - [819] = {.lex_state = 34}, - [820] = {.lex_state = 34}, - [821] = {.lex_state = 34}, - [822] = {.lex_state = 34}, - [823] = {.lex_state = 34}, - [824] = {.lex_state = 34}, - [825] = {.lex_state = 34}, - [826] = {.lex_state = 34}, - [827] = {.lex_state = 34}, - [828] = {.lex_state = 34}, - [829] = {.lex_state = 34}, - [830] = {.lex_state = 34}, - [831] = {.lex_state = 34}, - [832] = {.lex_state = 34}, - [833] = {.lex_state = 34}, - [834] = {.lex_state = 34}, - [835] = {.lex_state = 34}, - [836] = {.lex_state = 34}, - [837] = {.lex_state = 34}, - [838] = {.lex_state = 34}, - [839] = {.lex_state = 34}, - [840] = {.lex_state = 34}, - [841] = {.lex_state = 34}, - [842] = {.lex_state = 34}, - [843] = {.lex_state = 34}, - [844] = {.lex_state = 33}, - [845] = {.lex_state = 33}, - [846] = {.lex_state = 34}, - [847] = {.lex_state = 34}, - [848] = {.lex_state = 33}, - [849] = {.lex_state = 33}, - [850] = {.lex_state = 34}, - [851] = {.lex_state = 34}, - [852] = {.lex_state = 33}, - [853] = {.lex_state = 33}, - [854] = {.lex_state = 34}, - [855] = {.lex_state = 34}, - [856] = {.lex_state = 34}, - [857] = {.lex_state = 34}, - [858] = {.lex_state = 34}, - [859] = {.lex_state = 34}, - [860] = {.lex_state = 34}, - [861] = {.lex_state = 34}, - [862] = {.lex_state = 34}, - [863] = {.lex_state = 34}, - [864] = {.lex_state = 34}, - [865] = {.lex_state = 34}, - [866] = {.lex_state = 34}, - [867] = {.lex_state = 34}, - [868] = {.lex_state = 33}, - [869] = {.lex_state = 34}, - [870] = {.lex_state = 34}, - [871] = {.lex_state = 33}, - [872] = {.lex_state = 34}, - [873] = {.lex_state = 34}, - [874] = {.lex_state = 34}, - [875] = {.lex_state = 34}, - [876] = {.lex_state = 34}, - [877] = {.lex_state = 34}, - [878] = {.lex_state = 34}, - [879] = {.lex_state = 34}, - [880] = {.lex_state = 33}, - [881] = {.lex_state = 34}, - [882] = {.lex_state = 34}, - [883] = {.lex_state = 33}, - [884] = {.lex_state = 34}, - [885] = {.lex_state = 34}, - [886] = {.lex_state = 33}, - [887] = {.lex_state = 34}, - [888] = {.lex_state = 34}, - [889] = {.lex_state = 34}, - [890] = {.lex_state = 34}, - [891] = {.lex_state = 33}, - [892] = {.lex_state = 33}, - [893] = {.lex_state = 33}, - [894] = {.lex_state = 33}, - [895] = {.lex_state = 33}, - [896] = {.lex_state = 33}, - [897] = {.lex_state = 33}, - [898] = {.lex_state = 33}, - [899] = {.lex_state = 33}, - [900] = {.lex_state = 33}, - [901] = {.lex_state = 33}, - [902] = {.lex_state = 33}, - [903] = {.lex_state = 33}, - [904] = {.lex_state = 33}, - [905] = {.lex_state = 33}, - [906] = {.lex_state = 33}, - [907] = {.lex_state = 33}, - [908] = {.lex_state = 33}, - [909] = {.lex_state = 33}, - [910] = {.lex_state = 33}, - [911] = {.lex_state = 33}, - [912] = {.lex_state = 33}, - [913] = {.lex_state = 33}, - [914] = {.lex_state = 33}, - [915] = {.lex_state = 33}, - [916] = {.lex_state = 33}, - [917] = {.lex_state = 33}, - [918] = {.lex_state = 33}, - [919] = {.lex_state = 33}, - [920] = {.lex_state = 33}, - [921] = {.lex_state = 33}, - [922] = {.lex_state = 33}, - [923] = {.lex_state = 33}, - [924] = {.lex_state = 33}, - [925] = {.lex_state = 33}, - [926] = {.lex_state = 33}, - [927] = {.lex_state = 33}, - [928] = {.lex_state = 33}, - [929] = {.lex_state = 33}, - [930] = {.lex_state = 33}, - [931] = {.lex_state = 33}, - [932] = {.lex_state = 33}, - [933] = {.lex_state = 33}, - [934] = {.lex_state = 33}, - [935] = {.lex_state = 33}, - [936] = {.lex_state = 33}, - [937] = {.lex_state = 33}, - [938] = {.lex_state = 33}, - [939] = {.lex_state = 33}, - [940] = {.lex_state = 33}, - [941] = {.lex_state = 30}, - [942] = {.lex_state = 33}, - [943] = {.lex_state = 30}, - [944] = {.lex_state = 33}, - [945] = {.lex_state = 33}, - [946] = {.lex_state = 19}, - [947] = {.lex_state = 30}, - [948] = {.lex_state = 33}, - [949] = {.lex_state = 33}, - [950] = {.lex_state = 33}, - [951] = {.lex_state = 33}, - [952] = {.lex_state = 30}, - [953] = {.lex_state = 33}, - [954] = {.lex_state = 30}, - [955] = {.lex_state = 33}, - [956] = {.lex_state = 30}, - [957] = {.lex_state = 33}, - [958] = {.lex_state = 33}, - [959] = {.lex_state = 33}, - [960] = {.lex_state = 30}, - [961] = {.lex_state = 33}, - [962] = {.lex_state = 33}, - [963] = {.lex_state = 33}, - [964] = {.lex_state = 33}, - [965] = {.lex_state = 30}, - [966] = {.lex_state = 30}, - [967] = {.lex_state = 30}, - [968] = {.lex_state = 30}, - [969] = {.lex_state = 30}, - [970] = {.lex_state = 33}, - [971] = {.lex_state = 30}, - [972] = {.lex_state = 30}, - [973] = {.lex_state = 30}, - [974] = {.lex_state = 30}, - [975] = {.lex_state = 30}, - [976] = {.lex_state = 30}, - [977] = {.lex_state = 30}, - [978] = {.lex_state = 33}, - [979] = {.lex_state = 33}, - [980] = {.lex_state = 33}, - [981] = {.lex_state = 33}, - [982] = {.lex_state = 33}, - [983] = {.lex_state = 33}, - [984] = {.lex_state = 30}, - [985] = {.lex_state = 33}, - [986] = {.lex_state = 30}, - [987] = {.lex_state = 30}, - [988] = {.lex_state = 30}, - [989] = {.lex_state = 30}, - [990] = {.lex_state = 30}, - [991] = {.lex_state = 30}, - [992] = {.lex_state = 30}, - [993] = {.lex_state = 33}, - [994] = {.lex_state = 30}, - [995] = {.lex_state = 30}, - [996] = {.lex_state = 30}, - [997] = {.lex_state = 30}, - [998] = {.lex_state = 30}, - [999] = {.lex_state = 30}, - [1000] = {.lex_state = 30}, - [1001] = {.lex_state = 33}, - [1002] = {.lex_state = 30}, - [1003] = {.lex_state = 33}, - [1004] = {.lex_state = 30}, - [1005] = {.lex_state = 33}, - [1006] = {.lex_state = 33}, - [1007] = {.lex_state = 33}, - [1008] = {.lex_state = 19}, - [1009] = {.lex_state = 33}, - [1010] = {.lex_state = 19}, - [1011] = {.lex_state = 33}, - [1012] = {.lex_state = 33}, - [1013] = {.lex_state = 33}, - [1014] = {.lex_state = 33}, - [1015] = {.lex_state = 33}, - [1016] = {.lex_state = 33}, - [1017] = {.lex_state = 19}, - [1018] = {.lex_state = 19}, - [1019] = {.lex_state = 33}, - [1020] = {.lex_state = 33}, - [1021] = {.lex_state = 33}, - [1022] = {.lex_state = 33}, - [1023] = {.lex_state = 19}, - [1024] = {.lex_state = 19}, - [1025] = {.lex_state = 33}, - [1026] = {.lex_state = 19}, - [1027] = {.lex_state = 19}, - [1028] = {.lex_state = 19}, - [1029] = {.lex_state = 33}, - [1030] = {.lex_state = 33}, - [1031] = {.lex_state = 33}, - [1032] = {.lex_state = 33}, - [1033] = {.lex_state = 33}, - [1034] = {.lex_state = 33}, - [1035] = {.lex_state = 19}, - [1036] = {.lex_state = 33}, - [1037] = {.lex_state = 33}, - [1038] = {.lex_state = 33}, - [1039] = {.lex_state = 19}, - [1040] = {.lex_state = 19}, - [1041] = {.lex_state = 19}, - [1042] = {.lex_state = 19}, - [1043] = {.lex_state = 19}, - [1044] = {.lex_state = 19}, - [1045] = {.lex_state = 19}, - [1046] = {.lex_state = 19}, - [1047] = {.lex_state = 19}, - [1048] = {.lex_state = 19}, - [1049] = {.lex_state = 19}, - [1050] = {.lex_state = 19}, - [1051] = {.lex_state = 19}, - [1052] = {.lex_state = 33}, - [1053] = {.lex_state = 19}, - [1054] = {.lex_state = 19}, - [1055] = {.lex_state = 33}, - [1056] = {.lex_state = 19}, - [1057] = {.lex_state = 19}, - [1058] = {.lex_state = 19}, - [1059] = {.lex_state = 33}, - [1060] = {.lex_state = 33}, - [1061] = {.lex_state = 33}, - [1062] = {.lex_state = 33}, - [1063] = {.lex_state = 33}, - [1064] = {.lex_state = 33}, - [1065] = {.lex_state = 33}, - [1066] = {.lex_state = 33}, - [1067] = {.lex_state = 33}, - [1068] = {.lex_state = 33}, - [1069] = {.lex_state = 83}, - [1070] = {.lex_state = 33}, - [1071] = {.lex_state = 33}, - [1072] = {.lex_state = 33}, - [1073] = {.lex_state = 33}, - [1074] = {.lex_state = 83}, - [1075] = {.lex_state = 33}, - [1076] = {.lex_state = 33}, - [1077] = {.lex_state = 83}, - [1078] = {.lex_state = 33}, - [1079] = {.lex_state = 33}, - [1080] = {.lex_state = 33}, - [1081] = {.lex_state = 33}, - [1082] = {.lex_state = 83}, - [1083] = {.lex_state = 33}, - [1084] = {.lex_state = 83}, - [1085] = {.lex_state = 83}, - [1086] = {.lex_state = 33}, - [1087] = {.lex_state = 33}, - [1088] = {.lex_state = 83}, - [1089] = {.lex_state = 33}, - [1090] = {.lex_state = 83}, - [1091] = {.lex_state = 33}, - [1092] = {.lex_state = 83}, - [1093] = {.lex_state = 33}, - [1094] = {.lex_state = 33}, - [1095] = {.lex_state = 83}, - [1096] = {.lex_state = 33}, - [1097] = {.lex_state = 33}, - [1098] = {.lex_state = 83}, - [1099] = {.lex_state = 33}, - [1100] = {.lex_state = 31}, - [1101] = {.lex_state = 83}, - [1102] = {.lex_state = 31}, - [1103] = {.lex_state = 33}, - [1104] = {.lex_state = 33}, - [1105] = {.lex_state = 33}, - [1106] = {.lex_state = 83}, - [1107] = {.lex_state = 83}, - [1108] = {.lex_state = 83}, - [1109] = {.lex_state = 83}, - [1110] = {.lex_state = 83}, - [1111] = {.lex_state = 33}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 83}, - [1114] = {.lex_state = 83}, - [1115] = {.lex_state = 83}, - [1116] = {.lex_state = 83}, - [1117] = {.lex_state = 83}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 33}, - [1120] = {.lex_state = 33}, - [1121] = {.lex_state = 35}, - [1122] = {.lex_state = 83}, - [1123] = {.lex_state = 83}, - [1124] = {.lex_state = 83}, - [1125] = {.lex_state = 83}, - [1126] = {.lex_state = 83}, - [1127] = {.lex_state = 83}, - [1128] = {.lex_state = 83}, - [1129] = {.lex_state = 83}, - [1130] = {.lex_state = 83}, - [1131] = {.lex_state = 35}, - [1132] = {.lex_state = 83}, - [1133] = {.lex_state = 83}, - [1134] = {.lex_state = 83}, - [1135] = {.lex_state = 83}, - [1136] = {.lex_state = 83}, - [1137] = {.lex_state = 83}, - [1138] = {.lex_state = 35}, - [1139] = {.lex_state = 83}, - [1140] = {.lex_state = 83}, - [1141] = {.lex_state = 83}, - [1142] = {.lex_state = 35}, - [1143] = {.lex_state = 83}, - [1144] = {.lex_state = 83}, - [1145] = {.lex_state = 83}, - [1146] = {.lex_state = 83}, - [1147] = {.lex_state = 83}, - [1148] = {.lex_state = 83}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 83}, - [1151] = {.lex_state = 83}, - [1152] = {.lex_state = 83}, - [1153] = {.lex_state = 83}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 83}, - [1156] = {.lex_state = 83}, - [1157] = {.lex_state = 83}, - [1158] = {.lex_state = 83}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 83}, - [1161] = {.lex_state = 83}, - [1162] = {.lex_state = 83}, - [1163] = {.lex_state = 83}, - [1164] = {.lex_state = 83}, - [1165] = {.lex_state = 83}, - [1166] = {.lex_state = 83}, - [1167] = {.lex_state = 83}, - [1168] = {.lex_state = 83}, - [1169] = {.lex_state = 83}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 83}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 83}, - [1174] = {.lex_state = 83}, - [1175] = {.lex_state = 83}, - [1176] = {.lex_state = 83}, - [1177] = {.lex_state = 33}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 83}, - [1180] = {.lex_state = 33}, - [1181] = {.lex_state = 83}, - [1182] = {.lex_state = 83}, - [1183] = {.lex_state = 83}, - [1184] = {.lex_state = 83}, - [1185] = {.lex_state = 83}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 83}, - [1188] = {.lex_state = 83}, - [1189] = {.lex_state = 33}, - [1190] = {.lex_state = 83}, - [1191] = {.lex_state = 83}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 83}, - [1194] = {.lex_state = 83}, - [1195] = {.lex_state = 83}, - [1196] = {.lex_state = 83}, - [1197] = {.lex_state = 83}, - [1198] = {.lex_state = 83}, - [1199] = {.lex_state = 28}, - [1200] = {.lex_state = 83}, - [1201] = {.lex_state = 83}, - [1202] = {.lex_state = 83}, - [1203] = {.lex_state = 83}, - [1204] = {.lex_state = 83}, - [1205] = {.lex_state = 33}, - [1206] = {.lex_state = 83}, - [1207] = {.lex_state = 83}, - [1208] = {.lex_state = 83}, - [1209] = {.lex_state = 83}, - [1210] = {.lex_state = 83}, - [1211] = {.lex_state = 83}, - [1212] = {.lex_state = 33}, - [1213] = {.lex_state = 83}, - [1214] = {.lex_state = 22}, - [1215] = {.lex_state = 22}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 22}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 33}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 22}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 24}, - [1225] = {.lex_state = 24}, - [1226] = {.lex_state = 24}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 24}, - [1229] = {.lex_state = 83}, - [1230] = {.lex_state = 24}, - [1231] = {.lex_state = 22}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 22}, - [1235] = {.lex_state = 24}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 22}, - [1238] = {.lex_state = 28}, - [1239] = {.lex_state = 24}, - [1240] = {.lex_state = 33}, - [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 33}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 19}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 83}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 83}, - [1262] = {.lex_state = 19}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 28}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 33}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 28}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 28}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 33}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, + [1] = {.lex_state = 102}, + [2] = {.lex_state = 37}, + [3] = {.lex_state = 37}, + [4] = {.lex_state = 37}, + [5] = {.lex_state = 37}, + [6] = {.lex_state = 37}, + [7] = {.lex_state = 37}, + [8] = {.lex_state = 37}, + [9] = {.lex_state = 37}, + [10] = {.lex_state = 37}, + [11] = {.lex_state = 37}, + [12] = {.lex_state = 40}, + [13] = {.lex_state = 40}, + [14] = {.lex_state = 40}, + [15] = {.lex_state = 40}, + [16] = {.lex_state = 40}, + [17] = {.lex_state = 40}, + [18] = {.lex_state = 40}, + [19] = {.lex_state = 40}, + [20] = {.lex_state = 37}, + [21] = {.lex_state = 40}, + [22] = {.lex_state = 40}, + [23] = {.lex_state = 40}, + [24] = {.lex_state = 40}, + [25] = {.lex_state = 40}, + [26] = {.lex_state = 40}, + [27] = {.lex_state = 40}, + [28] = {.lex_state = 102}, + [29] = {.lex_state = 102}, + [30] = {.lex_state = 102}, + [31] = {.lex_state = 39}, + [32] = {.lex_state = 102}, + [33] = {.lex_state = 102}, + [34] = {.lex_state = 102}, + [35] = {.lex_state = 102}, + [36] = {.lex_state = 39}, + [37] = {.lex_state = 102}, + [38] = {.lex_state = 102}, + [39] = {.lex_state = 102}, + [40] = {.lex_state = 102}, + [41] = {.lex_state = 102}, + [42] = {.lex_state = 102}, + [43] = {.lex_state = 102}, + [44] = {.lex_state = 102}, + [45] = {.lex_state = 102}, + [46] = {.lex_state = 102}, + [47] = {.lex_state = 102}, + [48] = {.lex_state = 102}, + [49] = {.lex_state = 102}, + [50] = {.lex_state = 102}, + [51] = {.lex_state = 102}, + [52] = {.lex_state = 39}, + [53] = {.lex_state = 102}, + [54] = {.lex_state = 37}, + [55] = {.lex_state = 37}, + [56] = {.lex_state = 37}, + [57] = {.lex_state = 37}, + [58] = {.lex_state = 37}, + [59] = {.lex_state = 40}, + [60] = {.lex_state = 40}, + [61] = {.lex_state = 40}, + [62] = {.lex_state = 40}, + [63] = {.lex_state = 40}, + [64] = {.lex_state = 102}, + [65] = {.lex_state = 102}, + [66] = {.lex_state = 102}, + [67] = {.lex_state = 102}, + [68] = {.lex_state = 102}, + [69] = {.lex_state = 39}, + [70] = {.lex_state = 39}, + [71] = {.lex_state = 102}, + [72] = {.lex_state = 39}, + [73] = {.lex_state = 39}, + [74] = {.lex_state = 102}, + [75] = {.lex_state = 102}, + [76] = {.lex_state = 102}, + [77] = {.lex_state = 102}, + [78] = {.lex_state = 39}, + [79] = {.lex_state = 102}, + [80] = {.lex_state = 102}, + [81] = {.lex_state = 102}, + [82] = {.lex_state = 102}, + [83] = {.lex_state = 102}, + [84] = {.lex_state = 37}, + [85] = {.lex_state = 37}, + [86] = {.lex_state = 37}, + [87] = {.lex_state = 37}, + [88] = {.lex_state = 36}, + [89] = {.lex_state = 37}, + [90] = {.lex_state = 37}, + [91] = {.lex_state = 37}, + [92] = {.lex_state = 37}, + [93] = {.lex_state = 37}, + [94] = {.lex_state = 37}, + [95] = {.lex_state = 37}, + [96] = {.lex_state = 37}, + [97] = {.lex_state = 37}, + [98] = {.lex_state = 37}, + [99] = {.lex_state = 37}, + [100] = {.lex_state = 37}, + [101] = {.lex_state = 37}, + [102] = {.lex_state = 37}, + [103] = {.lex_state = 37}, + [104] = {.lex_state = 37}, + [105] = {.lex_state = 37}, + [106] = {.lex_state = 37}, + [107] = {.lex_state = 37}, + [108] = {.lex_state = 37}, + [109] = {.lex_state = 37}, + [110] = {.lex_state = 37}, + [111] = {.lex_state = 37}, + [112] = {.lex_state = 37}, + [113] = {.lex_state = 37}, + [114] = {.lex_state = 37}, + [115] = {.lex_state = 37}, + [116] = {.lex_state = 37}, + [117] = {.lex_state = 37}, + [118] = {.lex_state = 37}, + [119] = {.lex_state = 37}, + [120] = {.lex_state = 37}, + [121] = {.lex_state = 37}, + [122] = {.lex_state = 37}, + [123] = {.lex_state = 37}, + [124] = {.lex_state = 37}, + [125] = {.lex_state = 37}, + [126] = {.lex_state = 37}, + [127] = {.lex_state = 37}, + [128] = {.lex_state = 37}, + [129] = {.lex_state = 37}, + [130] = {.lex_state = 37}, + [131] = {.lex_state = 37}, + [132] = {.lex_state = 37}, + [133] = {.lex_state = 37}, + [134] = {.lex_state = 37}, + [135] = {.lex_state = 37}, + [136] = {.lex_state = 37}, + [137] = {.lex_state = 37}, + [138] = {.lex_state = 40}, + [139] = {.lex_state = 37}, + [140] = {.lex_state = 37}, + [141] = {.lex_state = 37}, + [142] = {.lex_state = 37}, + [143] = {.lex_state = 37}, + [144] = {.lex_state = 37}, + [145] = {.lex_state = 37}, + [146] = {.lex_state = 37}, + [147] = {.lex_state = 37}, + [148] = {.lex_state = 40}, + [149] = {.lex_state = 40}, + [150] = {.lex_state = 40}, + [151] = {.lex_state = 40}, + [152] = {.lex_state = 102}, + [153] = {.lex_state = 40}, + [154] = {.lex_state = 40}, + [155] = {.lex_state = 40}, + [156] = {.lex_state = 40}, + [157] = {.lex_state = 40}, + [158] = {.lex_state = 40}, + [159] = {.lex_state = 102}, + [160] = {.lex_state = 40}, + [161] = {.lex_state = 40}, + [162] = {.lex_state = 40}, + [163] = {.lex_state = 40}, + [164] = {.lex_state = 40}, + [165] = {.lex_state = 40}, + [166] = {.lex_state = 40}, + [167] = {.lex_state = 40}, + [168] = {.lex_state = 40}, + [169] = {.lex_state = 40}, + [170] = {.lex_state = 40}, + [171] = {.lex_state = 40}, + [172] = {.lex_state = 40}, + [173] = {.lex_state = 40}, + [174] = {.lex_state = 40}, + [175] = {.lex_state = 40}, + [176] = {.lex_state = 40}, + [177] = {.lex_state = 40}, + [178] = {.lex_state = 40}, + [179] = {.lex_state = 40}, + [180] = {.lex_state = 40}, + [181] = {.lex_state = 40}, + [182] = {.lex_state = 40}, + [183] = {.lex_state = 40}, + [184] = {.lex_state = 40}, + [185] = {.lex_state = 40}, + [186] = {.lex_state = 40}, + [187] = {.lex_state = 40}, + [188] = {.lex_state = 40}, + [189] = {.lex_state = 40}, + [190] = {.lex_state = 40}, + [191] = {.lex_state = 40}, + [192] = {.lex_state = 40}, + [193] = {.lex_state = 40}, + [194] = {.lex_state = 40}, + [195] = {.lex_state = 102}, + [196] = {.lex_state = 40}, + [197] = {.lex_state = 40}, + [198] = {.lex_state = 40}, + [199] = {.lex_state = 40}, + [200] = {.lex_state = 40}, + [201] = {.lex_state = 40}, + [202] = {.lex_state = 40}, + [203] = {.lex_state = 40}, + [204] = {.lex_state = 40}, + [205] = {.lex_state = 40}, + [206] = {.lex_state = 40}, + [207] = {.lex_state = 40}, + [208] = {.lex_state = 40}, + [209] = {.lex_state = 39}, + [210] = {.lex_state = 40}, + [211] = {.lex_state = 102}, + [212] = {.lex_state = 40}, + [213] = {.lex_state = 40}, + [214] = {.lex_state = 102}, + [215] = {.lex_state = 102}, + [216] = {.lex_state = 102}, + [217] = {.lex_state = 102}, + [218] = {.lex_state = 102}, + [219] = {.lex_state = 102}, + [220] = {.lex_state = 102}, + [221] = {.lex_state = 102}, + [222] = {.lex_state = 102}, + [223] = {.lex_state = 102}, + [224] = {.lex_state = 102}, + [225] = {.lex_state = 102}, + [226] = {.lex_state = 102}, + [227] = {.lex_state = 102}, + [228] = {.lex_state = 102}, + [229] = {.lex_state = 102}, + [230] = {.lex_state = 102}, + [231] = {.lex_state = 102}, + [232] = {.lex_state = 102}, + [233] = {.lex_state = 102}, + [234] = {.lex_state = 102}, + [235] = {.lex_state = 102}, + [236] = {.lex_state = 102}, + [237] = {.lex_state = 102}, + [238] = {.lex_state = 102}, + [239] = {.lex_state = 102}, + [240] = {.lex_state = 102}, + [241] = {.lex_state = 102}, + [242] = {.lex_state = 102}, + [243] = {.lex_state = 102}, + [244] = {.lex_state = 102}, + [245] = {.lex_state = 102}, + [246] = {.lex_state = 102}, + [247] = {.lex_state = 102}, + [248] = {.lex_state = 102}, + [249] = {.lex_state = 102}, + [250] = {.lex_state = 102}, + [251] = {.lex_state = 102}, + [252] = {.lex_state = 102}, + [253] = {.lex_state = 102}, + [254] = {.lex_state = 102}, + [255] = {.lex_state = 102}, + [256] = {.lex_state = 102}, + [257] = {.lex_state = 36}, + [258] = {.lex_state = 102}, + [259] = {.lex_state = 102}, + [260] = {.lex_state = 102}, + [261] = {.lex_state = 102}, + [262] = {.lex_state = 102}, + [263] = {.lex_state = 102}, + [264] = {.lex_state = 102}, + [265] = {.lex_state = 102}, + [266] = {.lex_state = 102}, + [267] = {.lex_state = 102}, + [268] = {.lex_state = 102}, + [269] = {.lex_state = 102}, + [270] = {.lex_state = 102}, + [271] = {.lex_state = 102}, + [272] = {.lex_state = 102}, + [273] = {.lex_state = 102}, + [274] = {.lex_state = 102}, + [275] = {.lex_state = 102}, + [276] = {.lex_state = 102}, + [277] = {.lex_state = 102}, + [278] = {.lex_state = 102}, + [279] = {.lex_state = 102}, + [280] = {.lex_state = 102}, + [281] = {.lex_state = 102}, + [282] = {.lex_state = 102}, + [283] = {.lex_state = 102}, + [284] = {.lex_state = 39}, + [285] = {.lex_state = 39}, + [286] = {.lex_state = 39}, + [287] = {.lex_state = 39}, + [288] = {.lex_state = 39}, + [289] = {.lex_state = 39}, + [290] = {.lex_state = 39}, + [291] = {.lex_state = 102}, + [292] = {.lex_state = 102}, + [293] = {.lex_state = 39}, + [294] = {.lex_state = 39}, + [295] = {.lex_state = 39}, + [296] = {.lex_state = 39}, + [297] = {.lex_state = 39}, + [298] = {.lex_state = 39}, + [299] = {.lex_state = 39}, + [300] = {.lex_state = 39}, + [301] = {.lex_state = 102}, + [302] = {.lex_state = 102}, + [303] = {.lex_state = 102}, + [304] = {.lex_state = 39}, + [305] = {.lex_state = 39}, + [306] = {.lex_state = 102}, + [307] = {.lex_state = 39}, + [308] = {.lex_state = 39}, + [309] = {.lex_state = 39}, + [310] = {.lex_state = 39}, + [311] = {.lex_state = 39}, + [312] = {.lex_state = 39}, + [313] = {.lex_state = 39}, + [314] = {.lex_state = 102}, + [315] = {.lex_state = 102}, + [316] = {.lex_state = 39}, + [317] = {.lex_state = 39}, + [318] = {.lex_state = 39}, + [319] = {.lex_state = 39}, + [320] = {.lex_state = 39}, + [321] = {.lex_state = 39}, + [322] = {.lex_state = 39}, + [323] = {.lex_state = 39}, + [324] = {.lex_state = 39}, + [325] = {.lex_state = 39}, + [326] = {.lex_state = 39}, + [327] = {.lex_state = 102}, + [328] = {.lex_state = 39}, + [329] = {.lex_state = 39}, + [330] = {.lex_state = 39}, + [331] = {.lex_state = 39}, + [332] = {.lex_state = 39}, + [333] = {.lex_state = 102}, + [334] = {.lex_state = 102}, + [335] = {.lex_state = 102}, + [336] = {.lex_state = 102}, + [337] = {.lex_state = 102}, + [338] = {.lex_state = 102}, + [339] = {.lex_state = 102}, + [340] = {.lex_state = 102}, + [341] = {.lex_state = 102}, + [342] = {.lex_state = 102}, + [343] = {.lex_state = 102}, + [344] = {.lex_state = 102}, + [345] = {.lex_state = 102}, + [346] = {.lex_state = 102}, + [347] = {.lex_state = 102}, + [348] = {.lex_state = 102}, + [349] = {.lex_state = 102}, + [350] = {.lex_state = 102}, + [351] = {.lex_state = 102}, + [352] = {.lex_state = 102}, + [353] = {.lex_state = 102}, + [354] = {.lex_state = 102}, + [355] = {.lex_state = 102}, + [356] = {.lex_state = 102}, + [357] = {.lex_state = 102}, + [358] = {.lex_state = 102}, + [359] = {.lex_state = 102}, + [360] = {.lex_state = 102}, + [361] = {.lex_state = 102}, + [362] = {.lex_state = 102}, + [363] = {.lex_state = 102}, + [364] = {.lex_state = 102}, + [365] = {.lex_state = 39}, + [366] = {.lex_state = 39}, + [367] = {.lex_state = 102}, + [368] = {.lex_state = 39}, + [369] = {.lex_state = 102}, + [370] = {.lex_state = 102}, + [371] = {.lex_state = 102}, + [372] = {.lex_state = 102}, + [373] = {.lex_state = 102}, + [374] = {.lex_state = 102}, + [375] = {.lex_state = 39}, + [376] = {.lex_state = 102}, + [377] = {.lex_state = 102}, + [378] = {.lex_state = 102}, + [379] = {.lex_state = 39}, + [380] = {.lex_state = 39}, + [381] = {.lex_state = 102}, + [382] = {.lex_state = 102}, + [383] = {.lex_state = 102}, + [384] = {.lex_state = 102}, + [385] = {.lex_state = 102}, + [386] = {.lex_state = 102}, + [387] = {.lex_state = 102}, + [388] = {.lex_state = 102}, + [389] = {.lex_state = 102}, + [390] = {.lex_state = 102}, + [391] = {.lex_state = 102}, + [392] = {.lex_state = 102}, + [393] = {.lex_state = 102}, + [394] = {.lex_state = 102}, + [395] = {.lex_state = 102}, + [396] = {.lex_state = 102}, + [397] = {.lex_state = 102}, + [398] = {.lex_state = 102}, + [399] = {.lex_state = 102}, + [400] = {.lex_state = 102}, + [401] = {.lex_state = 102}, + [402] = {.lex_state = 102}, + [403] = {.lex_state = 102}, + [404] = {.lex_state = 102}, + [405] = {.lex_state = 102}, + [406] = {.lex_state = 102}, + [407] = {.lex_state = 102}, + [408] = {.lex_state = 102}, + [409] = {.lex_state = 102}, + [410] = {.lex_state = 102}, + [411] = {.lex_state = 102}, + [412] = {.lex_state = 102}, + [413] = {.lex_state = 102}, + [414] = {.lex_state = 102}, + [415] = {.lex_state = 102}, + [416] = {.lex_state = 102}, + [417] = {.lex_state = 102}, + [418] = {.lex_state = 102}, + [419] = {.lex_state = 102}, + [420] = {.lex_state = 102}, + [421] = {.lex_state = 102}, + [422] = {.lex_state = 102}, + [423] = {.lex_state = 102}, + [424] = {.lex_state = 102}, + [425] = {.lex_state = 102}, + [426] = {.lex_state = 39}, + [427] = {.lex_state = 102}, + [428] = {.lex_state = 102}, + [429] = {.lex_state = 102}, + [430] = {.lex_state = 102}, + [431] = {.lex_state = 102}, + [432] = {.lex_state = 102}, + [433] = {.lex_state = 102}, + [434] = {.lex_state = 39}, + [435] = {.lex_state = 102}, + [436] = {.lex_state = 102}, + [437] = {.lex_state = 102}, + [438] = {.lex_state = 102}, + [439] = {.lex_state = 102}, + [440] = {.lex_state = 102}, + [441] = {.lex_state = 39}, + [442] = {.lex_state = 39}, + [443] = {.lex_state = 102}, + [444] = {.lex_state = 102}, + [445] = {.lex_state = 102}, + [446] = {.lex_state = 102}, + [447] = {.lex_state = 102}, + [448] = {.lex_state = 102}, + [449] = {.lex_state = 102}, + [450] = {.lex_state = 39}, + [451] = {.lex_state = 102}, + [452] = {.lex_state = 102}, + [453] = {.lex_state = 102}, + [454] = {.lex_state = 102}, + [455] = {.lex_state = 39}, + [456] = {.lex_state = 102}, + [457] = {.lex_state = 39}, + [458] = {.lex_state = 102}, + [459] = {.lex_state = 102}, + [460] = {.lex_state = 102}, + [461] = {.lex_state = 39}, + [462] = {.lex_state = 102}, + [463] = {.lex_state = 39}, + [464] = {.lex_state = 102}, + [465] = {.lex_state = 102}, + [466] = {.lex_state = 102}, + [467] = {.lex_state = 39}, + [468] = {.lex_state = 102}, + [469] = {.lex_state = 102}, + [470] = {.lex_state = 102}, + [471] = {.lex_state = 102}, + [472] = {.lex_state = 102}, + [473] = {.lex_state = 102}, + [474] = {.lex_state = 102}, + [475] = {.lex_state = 102}, + [476] = {.lex_state = 102}, + [477] = {.lex_state = 102}, + [478] = {.lex_state = 102}, + [479] = {.lex_state = 102}, + [480] = {.lex_state = 102}, + [481] = {.lex_state = 39}, + [482] = {.lex_state = 102}, + [483] = {.lex_state = 102}, + [484] = {.lex_state = 39}, + [485] = {.lex_state = 102}, + [486] = {.lex_state = 102}, + [487] = {.lex_state = 39}, + [488] = {.lex_state = 39}, + [489] = {.lex_state = 102}, + [490] = {.lex_state = 39}, + [491] = {.lex_state = 102}, + [492] = {.lex_state = 102}, + [493] = {.lex_state = 102}, + [494] = {.lex_state = 102}, + [495] = {.lex_state = 102}, + [496] = {.lex_state = 102}, + [497] = {.lex_state = 102}, + [498] = {.lex_state = 102}, + [499] = {.lex_state = 36}, + [500] = {.lex_state = 102}, + [501] = {.lex_state = 102}, + [502] = {.lex_state = 36}, + [503] = {.lex_state = 102}, + [504] = {.lex_state = 43}, + [505] = {.lex_state = 102}, + [506] = {.lex_state = 43}, + [507] = {.lex_state = 43}, + [508] = {.lex_state = 102}, + [509] = {.lex_state = 43}, + [510] = {.lex_state = 102}, + [511] = {.lex_state = 43}, + [512] = {.lex_state = 43}, + [513] = {.lex_state = 102}, + [514] = {.lex_state = 102}, + [515] = {.lex_state = 102}, + [516] = {.lex_state = 43}, + [517] = {.lex_state = 102}, + [518] = {.lex_state = 102}, + [519] = {.lex_state = 43}, + [520] = {.lex_state = 102}, + [521] = {.lex_state = 43}, + [522] = {.lex_state = 102}, + [523] = {.lex_state = 102}, + [524] = {.lex_state = 102}, + [525] = {.lex_state = 102}, + [526] = {.lex_state = 45}, + [527] = {.lex_state = 102}, + [528] = {.lex_state = 45}, + [529] = {.lex_state = 45}, + [530] = {.lex_state = 45}, + [531] = {.lex_state = 45}, + [532] = {.lex_state = 43}, + [533] = {.lex_state = 45}, + [534] = {.lex_state = 45}, + [535] = {.lex_state = 45}, + [536] = {.lex_state = 45}, + [537] = {.lex_state = 45}, + [538] = {.lex_state = 45}, + [539] = {.lex_state = 45}, + [540] = {.lex_state = 45}, + [541] = {.lex_state = 45}, + [542] = {.lex_state = 45}, + [543] = {.lex_state = 45}, + [544] = {.lex_state = 45}, + [545] = {.lex_state = 45}, + [546] = {.lex_state = 45}, + [547] = {.lex_state = 45}, + [548] = {.lex_state = 45}, + [549] = {.lex_state = 45}, + [550] = {.lex_state = 44}, + [551] = {.lex_state = 44}, + [552] = {.lex_state = 48}, + [553] = {.lex_state = 48}, + [554] = {.lex_state = 44}, + [555] = {.lex_state = 48}, + [556] = {.lex_state = 102}, + [557] = {.lex_state = 43}, + [558] = {.lex_state = 102}, + [559] = {.lex_state = 102}, + [560] = {.lex_state = 102}, + [561] = {.lex_state = 102}, + [562] = {.lex_state = 102}, + [563] = {.lex_state = 102}, + [564] = {.lex_state = 102}, + [565] = {.lex_state = 102}, + [566] = {.lex_state = 102}, + [567] = {.lex_state = 102}, + [568] = {.lex_state = 102}, + [569] = {.lex_state = 102}, + [570] = {.lex_state = 102}, + [571] = {.lex_state = 102}, + [572] = {.lex_state = 102}, + [573] = {.lex_state = 102}, + [574] = {.lex_state = 102}, + [575] = {.lex_state = 102}, + [576] = {.lex_state = 102}, + [577] = {.lex_state = 102}, + [578] = {.lex_state = 102}, + [579] = {.lex_state = 102}, + [580] = {.lex_state = 102}, + [581] = {.lex_state = 102}, + [582] = {.lex_state = 102}, + [583] = {.lex_state = 102}, + [584] = {.lex_state = 102}, + [585] = {.lex_state = 102}, + [586] = {.lex_state = 102}, + [587] = {.lex_state = 102}, + [588] = {.lex_state = 102}, + [589] = {.lex_state = 102}, + [590] = {.lex_state = 102}, + [591] = {.lex_state = 102}, + [592] = {.lex_state = 102}, + [593] = {.lex_state = 102}, + [594] = {.lex_state = 102}, + [595] = {.lex_state = 102}, + [596] = {.lex_state = 102}, + [597] = {.lex_state = 102}, + [598] = {.lex_state = 102}, + [599] = {.lex_state = 102}, + [600] = {.lex_state = 102}, + [601] = {.lex_state = 102}, + [602] = {.lex_state = 102}, + [603] = {.lex_state = 102}, + [604] = {.lex_state = 102}, + [605] = {.lex_state = 102}, + [606] = {.lex_state = 102}, + [607] = {.lex_state = 102}, + [608] = {.lex_state = 102}, + [609] = {.lex_state = 102}, + [610] = {.lex_state = 102}, + [611] = {.lex_state = 102}, + [612] = {.lex_state = 102}, + [613] = {.lex_state = 102}, + [614] = {.lex_state = 102}, + [615] = {.lex_state = 102}, + [616] = {.lex_state = 102}, + [617] = {.lex_state = 102}, + [618] = {.lex_state = 43}, + [619] = {.lex_state = 102}, + [620] = {.lex_state = 43}, + [621] = {.lex_state = 43}, + [622] = {.lex_state = 102}, + [623] = {.lex_state = 102}, + [624] = {.lex_state = 102}, + [625] = {.lex_state = 102}, + [626] = {.lex_state = 102}, + [627] = {.lex_state = 102}, + [628] = {.lex_state = 102}, + [629] = {.lex_state = 102}, + [630] = {.lex_state = 43}, + [631] = {.lex_state = 102}, + [632] = {.lex_state = 102}, + [633] = {.lex_state = 102}, + [634] = {.lex_state = 102}, + [635] = {.lex_state = 43}, + [636] = {.lex_state = 102}, + [637] = {.lex_state = 102}, + [638] = {.lex_state = 102}, + [639] = {.lex_state = 102}, + [640] = {.lex_state = 102}, + [641] = {.lex_state = 102}, + [642] = {.lex_state = 102}, + [643] = {.lex_state = 102}, + [644] = {.lex_state = 102}, + [645] = {.lex_state = 102}, + [646] = {.lex_state = 102}, + [647] = {.lex_state = 102}, + [648] = {.lex_state = 102}, + [649] = {.lex_state = 102}, + [650] = {.lex_state = 102}, + [651] = {.lex_state = 102}, + [652] = {.lex_state = 102}, + [653] = {.lex_state = 102}, + [654] = {.lex_state = 102}, + [655] = {.lex_state = 102}, + [656] = {.lex_state = 102}, + [657] = {.lex_state = 102}, + [658] = {.lex_state = 102}, + [659] = {.lex_state = 102}, + [660] = {.lex_state = 102}, + [661] = {.lex_state = 102}, + [662] = {.lex_state = 102}, + [663] = {.lex_state = 102}, + [664] = {.lex_state = 102}, + [665] = {.lex_state = 102}, + [666] = {.lex_state = 102}, + [667] = {.lex_state = 102}, + [668] = {.lex_state = 102}, + [669] = {.lex_state = 102}, + [670] = {.lex_state = 102}, + [671] = {.lex_state = 102}, + [672] = {.lex_state = 102}, + [673] = {.lex_state = 102}, + [674] = {.lex_state = 102}, + [675] = {.lex_state = 102}, + [676] = {.lex_state = 102}, + [677] = {.lex_state = 102}, + [678] = {.lex_state = 102}, + [679] = {.lex_state = 102}, + [680] = {.lex_state = 102}, + [681] = {.lex_state = 102}, + [682] = {.lex_state = 102}, + [683] = {.lex_state = 102}, + [684] = {.lex_state = 102}, + [685] = {.lex_state = 102}, + [686] = {.lex_state = 102}, + [687] = {.lex_state = 102}, + [688] = {.lex_state = 102}, + [689] = {.lex_state = 102}, + [690] = {.lex_state = 102}, + [691] = {.lex_state = 102}, + [692] = {.lex_state = 102}, + [693] = {.lex_state = 102}, + [694] = {.lex_state = 102}, + [695] = {.lex_state = 102}, + [696] = {.lex_state = 102}, + [697] = {.lex_state = 102}, + [698] = {.lex_state = 102}, + [699] = {.lex_state = 102}, + [700] = {.lex_state = 102}, + [701] = {.lex_state = 102}, + [702] = {.lex_state = 102}, + [703] = {.lex_state = 102}, + [704] = {.lex_state = 102}, + [705] = {.lex_state = 102}, + [706] = {.lex_state = 102}, + [707] = {.lex_state = 102}, + [708] = {.lex_state = 102}, + [709] = {.lex_state = 102}, + [710] = {.lex_state = 102}, + [711] = {.lex_state = 102}, + [712] = {.lex_state = 102}, + [713] = {.lex_state = 102}, + [714] = {.lex_state = 102}, + [715] = {.lex_state = 102}, + [716] = {.lex_state = 42}, + [717] = {.lex_state = 42}, + [718] = {.lex_state = 42}, + [719] = {.lex_state = 42}, + [720] = {.lex_state = 42}, + [721] = {.lex_state = 45}, + [722] = {.lex_state = 43}, + [723] = {.lex_state = 43}, + [724] = {.lex_state = 102}, + [725] = {.lex_state = 102}, + [726] = {.lex_state = 102}, + [727] = {.lex_state = 45}, + [728] = {.lex_state = 45}, + [729] = {.lex_state = 44}, + [730] = {.lex_state = 45}, + [731] = {.lex_state = 45}, + [732] = {.lex_state = 45}, + [733] = {.lex_state = 45}, + [734] = {.lex_state = 45}, + [735] = {.lex_state = 45}, + [736] = {.lex_state = 45}, + [737] = {.lex_state = 45}, + [738] = {.lex_state = 45}, + [739] = {.lex_state = 45}, + [740] = {.lex_state = 45}, + [741] = {.lex_state = 45}, + [742] = {.lex_state = 45}, + [743] = {.lex_state = 45}, + [744] = {.lex_state = 45}, + [745] = {.lex_state = 45}, + [746] = {.lex_state = 45}, + [747] = {.lex_state = 45}, + [748] = {.lex_state = 45}, + [749] = {.lex_state = 45}, + [750] = {.lex_state = 45}, + [751] = {.lex_state = 45}, + [752] = {.lex_state = 45}, + [753] = {.lex_state = 45}, + [754] = {.lex_state = 45}, + [755] = {.lex_state = 45}, + [756] = {.lex_state = 45}, + [757] = {.lex_state = 45}, + [758] = {.lex_state = 45}, + [759] = {.lex_state = 45}, + [760] = {.lex_state = 45}, + [761] = {.lex_state = 45}, + [762] = {.lex_state = 45}, + [763] = {.lex_state = 45}, + [764] = {.lex_state = 45}, + [765] = {.lex_state = 44}, + [766] = {.lex_state = 45}, + [767] = {.lex_state = 45}, + [768] = {.lex_state = 45}, + [769] = {.lex_state = 44}, + [770] = {.lex_state = 45}, + [771] = {.lex_state = 45}, + [772] = {.lex_state = 45}, + [773] = {.lex_state = 45}, + [774] = {.lex_state = 45}, + [775] = {.lex_state = 43}, + [776] = {.lex_state = 43}, + [777] = {.lex_state = 102}, + [778] = {.lex_state = 45}, + [779] = {.lex_state = 43}, + [780] = {.lex_state = 43}, + [781] = {.lex_state = 43}, + [782] = {.lex_state = 43}, + [783] = {.lex_state = 43}, + [784] = {.lex_state = 102}, + [785] = {.lex_state = 45}, + [786] = {.lex_state = 45}, + [787] = {.lex_state = 45}, + [788] = {.lex_state = 45}, + [789] = {.lex_state = 45}, + [790] = {.lex_state = 45}, + [791] = {.lex_state = 45}, + [792] = {.lex_state = 45}, + [793] = {.lex_state = 45}, + [794] = {.lex_state = 45}, + [795] = {.lex_state = 45}, + [796] = {.lex_state = 45}, + [797] = {.lex_state = 45}, + [798] = {.lex_state = 45}, + [799] = {.lex_state = 45}, + [800] = {.lex_state = 45}, + [801] = {.lex_state = 45}, + [802] = {.lex_state = 45}, + [803] = {.lex_state = 45}, + [804] = {.lex_state = 45}, + [805] = {.lex_state = 45}, + [806] = {.lex_state = 45}, + [807] = {.lex_state = 43}, + [808] = {.lex_state = 45}, + [809] = {.lex_state = 45}, + [810] = {.lex_state = 45}, + [811] = {.lex_state = 45}, + [812] = {.lex_state = 45}, + [813] = {.lex_state = 43}, + [814] = {.lex_state = 43}, + [815] = {.lex_state = 43}, + [816] = {.lex_state = 43}, + [817] = {.lex_state = 43}, + [818] = {.lex_state = 43}, + [819] = {.lex_state = 43}, + [820] = {.lex_state = 43}, + [821] = {.lex_state = 43}, + [822] = {.lex_state = 43}, + [823] = {.lex_state = 43}, + [824] = {.lex_state = 43}, + [825] = {.lex_state = 43}, + [826] = {.lex_state = 43}, + [827] = {.lex_state = 43}, + [828] = {.lex_state = 43}, + [829] = {.lex_state = 43}, + [830] = {.lex_state = 43}, + [831] = {.lex_state = 43}, + [832] = {.lex_state = 43}, + [833] = {.lex_state = 45}, + [834] = {.lex_state = 45}, + [835] = {.lex_state = 45}, + [836] = {.lex_state = 45}, + [837] = {.lex_state = 43}, + [838] = {.lex_state = 45}, + [839] = {.lex_state = 43}, + [840] = {.lex_state = 45}, + [841] = {.lex_state = 45}, + [842] = {.lex_state = 45}, + [843] = {.lex_state = 45}, + [844] = {.lex_state = 45}, + [845] = {.lex_state = 45}, + [846] = {.lex_state = 45}, + [847] = {.lex_state = 45}, + [848] = {.lex_state = 45}, + [849] = {.lex_state = 45}, + [850] = {.lex_state = 45}, + [851] = {.lex_state = 45}, + [852] = {.lex_state = 45}, + [853] = {.lex_state = 45}, + [854] = {.lex_state = 43}, + [855] = {.lex_state = 43}, + [856] = {.lex_state = 43}, + [857] = {.lex_state = 43}, + [858] = {.lex_state = 43}, + [859] = {.lex_state = 43}, + [860] = {.lex_state = 48}, + [861] = {.lex_state = 44}, + [862] = {.lex_state = 48}, + [863] = {.lex_state = 44}, + [864] = {.lex_state = 48}, + [865] = {.lex_state = 43}, + [866] = {.lex_state = 48}, + [867] = {.lex_state = 48}, + [868] = {.lex_state = 44}, + [869] = {.lex_state = 44}, + [870] = {.lex_state = 44}, + [871] = {.lex_state = 48}, + [872] = {.lex_state = 44}, + [873] = {.lex_state = 44}, + [874] = {.lex_state = 44}, + [875] = {.lex_state = 44}, + [876] = {.lex_state = 44}, + [877] = {.lex_state = 48}, + [878] = {.lex_state = 44}, + [879] = {.lex_state = 48}, + [880] = {.lex_state = 48}, + [881] = {.lex_state = 44}, + [882] = {.lex_state = 48}, + [883] = {.lex_state = 48}, + [884] = {.lex_state = 44}, + [885] = {.lex_state = 48}, + [886] = {.lex_state = 44}, + [887] = {.lex_state = 44}, + [888] = {.lex_state = 42}, + [889] = {.lex_state = 42}, + [890] = {.lex_state = 44}, + [891] = {.lex_state = 44}, + [892] = {.lex_state = 43}, + [893] = {.lex_state = 48}, + [894] = {.lex_state = 48}, + [895] = {.lex_state = 42}, + [896] = {.lex_state = 43}, + [897] = {.lex_state = 48}, + [898] = {.lex_state = 44}, + [899] = {.lex_state = 43}, + [900] = {.lex_state = 48}, + [901] = {.lex_state = 48}, + [902] = {.lex_state = 48}, + [903] = {.lex_state = 42}, + [904] = {.lex_state = 48}, + [905] = {.lex_state = 42}, + [906] = {.lex_state = 44}, + [907] = {.lex_state = 45}, + [908] = {.lex_state = 45}, + [909] = {.lex_state = 45}, + [910] = {.lex_state = 45}, + [911] = {.lex_state = 45}, + [912] = {.lex_state = 45}, + [913] = {.lex_state = 45}, + [914] = {.lex_state = 45}, + [915] = {.lex_state = 45}, + [916] = {.lex_state = 45}, + [917] = {.lex_state = 45}, + [918] = {.lex_state = 45}, + [919] = {.lex_state = 45}, + [920] = {.lex_state = 43}, + [921] = {.lex_state = 43}, + [922] = {.lex_state = 43}, + [923] = {.lex_state = 43}, + [924] = {.lex_state = 43}, + [925] = {.lex_state = 43}, + [926] = {.lex_state = 43}, + [927] = {.lex_state = 43}, + [928] = {.lex_state = 43}, + [929] = {.lex_state = 43}, + [930] = {.lex_state = 45}, + [931] = {.lex_state = 43}, + [932] = {.lex_state = 43}, + [933] = {.lex_state = 43}, + [934] = {.lex_state = 43}, + [935] = {.lex_state = 43}, + [936] = {.lex_state = 45}, + [937] = {.lex_state = 45}, + [938] = {.lex_state = 43}, + [939] = {.lex_state = 45}, + [940] = {.lex_state = 45}, + [941] = {.lex_state = 43}, + [942] = {.lex_state = 43}, + [943] = {.lex_state = 43}, + [944] = {.lex_state = 45}, + [945] = {.lex_state = 45}, + [946] = {.lex_state = 45}, + [947] = {.lex_state = 45}, + [948] = {.lex_state = 45}, + [949] = {.lex_state = 45}, + [950] = {.lex_state = 45}, + [951] = {.lex_state = 45}, + [952] = {.lex_state = 45}, + [953] = {.lex_state = 43}, + [954] = {.lex_state = 43}, + [955] = {.lex_state = 45}, + [956] = {.lex_state = 45}, + [957] = {.lex_state = 45}, + [958] = {.lex_state = 45}, + [959] = {.lex_state = 45}, + [960] = {.lex_state = 43}, + [961] = {.lex_state = 45}, + [962] = {.lex_state = 45}, + [963] = {.lex_state = 45}, + [964] = {.lex_state = 43}, + [965] = {.lex_state = 45}, + [966] = {.lex_state = 45}, + [967] = {.lex_state = 45}, + [968] = {.lex_state = 45}, + [969] = {.lex_state = 45}, + [970] = {.lex_state = 45}, + [971] = {.lex_state = 45}, + [972] = {.lex_state = 45}, + [973] = {.lex_state = 45}, + [974] = {.lex_state = 43}, + [975] = {.lex_state = 45}, + [976] = {.lex_state = 45}, + [977] = {.lex_state = 45}, + [978] = {.lex_state = 45}, + [979] = {.lex_state = 45}, + [980] = {.lex_state = 45}, + [981] = {.lex_state = 45}, + [982] = {.lex_state = 45}, + [983] = {.lex_state = 45}, + [984] = {.lex_state = 43}, + [985] = {.lex_state = 45}, + [986] = {.lex_state = 45}, + [987] = {.lex_state = 45}, + [988] = {.lex_state = 45}, + [989] = {.lex_state = 45}, + [990] = {.lex_state = 45}, + [991] = {.lex_state = 45}, + [992] = {.lex_state = 45}, + [993] = {.lex_state = 45}, + [994] = {.lex_state = 45}, + [995] = {.lex_state = 45}, + [996] = {.lex_state = 45}, + [997] = {.lex_state = 45}, + [998] = {.lex_state = 45}, + [999] = {.lex_state = 45}, + [1000] = {.lex_state = 45}, + [1001] = {.lex_state = 45}, + [1002] = {.lex_state = 45}, + [1003] = {.lex_state = 45}, + [1004] = {.lex_state = 45}, + [1005] = {.lex_state = 45}, + [1006] = {.lex_state = 45}, + [1007] = {.lex_state = 45}, + [1008] = {.lex_state = 45}, + [1009] = {.lex_state = 45}, + [1010] = {.lex_state = 45}, + [1011] = {.lex_state = 45}, + [1012] = {.lex_state = 45}, + [1013] = {.lex_state = 45}, + [1014] = {.lex_state = 45}, + [1015] = {.lex_state = 45}, + [1016] = {.lex_state = 45}, + [1017] = {.lex_state = 45}, + [1018] = {.lex_state = 45}, + [1019] = {.lex_state = 45}, + [1020] = {.lex_state = 45}, + [1021] = {.lex_state = 45}, + [1022] = {.lex_state = 43}, + [1023] = {.lex_state = 45}, + [1024] = {.lex_state = 45}, + [1025] = {.lex_state = 45}, + [1026] = {.lex_state = 45}, + [1027] = {.lex_state = 45}, + [1028] = {.lex_state = 45}, + [1029] = {.lex_state = 43}, + [1030] = {.lex_state = 43}, + [1031] = {.lex_state = 45}, + [1032] = {.lex_state = 43}, + [1033] = {.lex_state = 45}, + [1034] = {.lex_state = 45}, + [1035] = {.lex_state = 45}, + [1036] = {.lex_state = 45}, + [1037] = {.lex_state = 45}, + [1038] = {.lex_state = 45}, + [1039] = {.lex_state = 45}, + [1040] = {.lex_state = 45}, + [1041] = {.lex_state = 45}, + [1042] = {.lex_state = 45}, + [1043] = {.lex_state = 45}, + [1044] = {.lex_state = 45}, + [1045] = {.lex_state = 45}, + [1046] = {.lex_state = 45}, + [1047] = {.lex_state = 45}, + [1048] = {.lex_state = 45}, + [1049] = {.lex_state = 45}, + [1050] = {.lex_state = 45}, + [1051] = {.lex_state = 45}, + [1052] = {.lex_state = 45}, + [1053] = {.lex_state = 45}, + [1054] = {.lex_state = 45}, + [1055] = {.lex_state = 45}, + [1056] = {.lex_state = 45}, + [1057] = {.lex_state = 45}, + [1058] = {.lex_state = 45}, + [1059] = {.lex_state = 45}, + [1060] = {.lex_state = 43}, + [1061] = {.lex_state = 43}, + [1062] = {.lex_state = 43}, + [1063] = {.lex_state = 43}, + [1064] = {.lex_state = 43}, + [1065] = {.lex_state = 43}, + [1066] = {.lex_state = 43}, + [1067] = {.lex_state = 43}, + [1068] = {.lex_state = 43}, + [1069] = {.lex_state = 43}, + [1070] = {.lex_state = 43}, + [1071] = {.lex_state = 43}, + [1072] = {.lex_state = 43}, + [1073] = {.lex_state = 43}, + [1074] = {.lex_state = 43}, + [1075] = {.lex_state = 43}, + [1076] = {.lex_state = 43}, + [1077] = {.lex_state = 43}, + [1078] = {.lex_state = 43}, + [1079] = {.lex_state = 43}, + [1080] = {.lex_state = 43}, + [1081] = {.lex_state = 43}, + [1082] = {.lex_state = 43}, + [1083] = {.lex_state = 43}, + [1084] = {.lex_state = 43}, + [1085] = {.lex_state = 43}, + [1086] = {.lex_state = 43}, + [1087] = {.lex_state = 43}, + [1088] = {.lex_state = 43}, + [1089] = {.lex_state = 43}, + [1090] = {.lex_state = 43}, + [1091] = {.lex_state = 43}, + [1092] = {.lex_state = 43}, + [1093] = {.lex_state = 43}, + [1094] = {.lex_state = 43}, + [1095] = {.lex_state = 43}, + [1096] = {.lex_state = 43}, + [1097] = {.lex_state = 43}, + [1098] = {.lex_state = 43}, + [1099] = {.lex_state = 43}, + [1100] = {.lex_state = 43}, + [1101] = {.lex_state = 43}, + [1102] = {.lex_state = 43}, + [1103] = {.lex_state = 43}, + [1104] = {.lex_state = 43}, + [1105] = {.lex_state = 43}, + [1106] = {.lex_state = 43}, + [1107] = {.lex_state = 43}, + [1108] = {.lex_state = 43}, + [1109] = {.lex_state = 43}, + [1110] = {.lex_state = 41}, + [1111] = {.lex_state = 43}, + [1112] = {.lex_state = 43}, + [1113] = {.lex_state = 43}, + [1114] = {.lex_state = 43}, + [1115] = {.lex_state = 43}, + [1116] = {.lex_state = 43}, + [1117] = {.lex_state = 43}, + [1118] = {.lex_state = 43}, + [1119] = {.lex_state = 23}, + [1120] = {.lex_state = 43}, + [1121] = {.lex_state = 43}, + [1122] = {.lex_state = 43}, + [1123] = {.lex_state = 43}, + [1124] = {.lex_state = 43}, + [1125] = {.lex_state = 43}, + [1126] = {.lex_state = 43}, + [1127] = {.lex_state = 41}, + [1128] = {.lex_state = 43}, + [1129] = {.lex_state = 43}, + [1130] = {.lex_state = 43}, + [1131] = {.lex_state = 43}, + [1132] = {.lex_state = 43}, + [1133] = {.lex_state = 43}, + [1134] = {.lex_state = 43}, + [1135] = {.lex_state = 43}, + [1136] = {.lex_state = 43}, + [1137] = {.lex_state = 43}, + [1138] = {.lex_state = 43}, + [1139] = {.lex_state = 41}, + [1140] = {.lex_state = 41}, + [1141] = {.lex_state = 41}, + [1142] = {.lex_state = 41}, + [1143] = {.lex_state = 41}, + [1144] = {.lex_state = 41}, + [1145] = {.lex_state = 41}, + [1146] = {.lex_state = 43}, + [1147] = {.lex_state = 41}, + [1148] = {.lex_state = 43}, + [1149] = {.lex_state = 41}, + [1150] = {.lex_state = 41}, + [1151] = {.lex_state = 41}, + [1152] = {.lex_state = 43}, + [1153] = {.lex_state = 41}, + [1154] = {.lex_state = 41}, + [1155] = {.lex_state = 41}, + [1156] = {.lex_state = 41}, + [1157] = {.lex_state = 43}, + [1158] = {.lex_state = 43}, + [1159] = {.lex_state = 43}, + [1160] = {.lex_state = 43}, + [1161] = {.lex_state = 41}, + [1162] = {.lex_state = 43}, + [1163] = {.lex_state = 41}, + [1164] = {.lex_state = 43}, + [1165] = {.lex_state = 43}, + [1166] = {.lex_state = 43}, + [1167] = {.lex_state = 41}, + [1168] = {.lex_state = 43}, + [1169] = {.lex_state = 43}, + [1170] = {.lex_state = 43}, + [1171] = {.lex_state = 43}, + [1172] = {.lex_state = 41}, + [1173] = {.lex_state = 43}, + [1174] = {.lex_state = 43}, + [1175] = {.lex_state = 41}, + [1176] = {.lex_state = 41}, + [1177] = {.lex_state = 43}, + [1178] = {.lex_state = 41}, + [1179] = {.lex_state = 43}, + [1180] = {.lex_state = 41}, + [1181] = {.lex_state = 41}, + [1182] = {.lex_state = 43}, + [1183] = {.lex_state = 43}, + [1184] = {.lex_state = 41}, + [1185] = {.lex_state = 41}, + [1186] = {.lex_state = 41}, + [1187] = {.lex_state = 41}, + [1188] = {.lex_state = 41}, + [1189] = {.lex_state = 41}, + [1190] = {.lex_state = 41}, + [1191] = {.lex_state = 43}, + [1192] = {.lex_state = 41}, + [1193] = {.lex_state = 41}, + [1194] = {.lex_state = 41}, + [1195] = {.lex_state = 41}, + [1196] = {.lex_state = 41}, + [1197] = {.lex_state = 23}, + [1198] = {.lex_state = 43}, + [1199] = {.lex_state = 23}, + [1200] = {.lex_state = 23}, + [1201] = {.lex_state = 23}, + [1202] = {.lex_state = 23}, + [1203] = {.lex_state = 23}, + [1204] = {.lex_state = 23}, + [1205] = {.lex_state = 23}, + [1206] = {.lex_state = 23}, + [1207] = {.lex_state = 23}, + [1208] = {.lex_state = 23}, + [1209] = {.lex_state = 23}, + [1210] = {.lex_state = 23}, + [1211] = {.lex_state = 23}, + [1212] = {.lex_state = 43}, + [1213] = {.lex_state = 23}, + [1214] = {.lex_state = 23}, + [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 = 43}, + [1230] = {.lex_state = 43}, + [1231] = {.lex_state = 43}, + [1232] = {.lex_state = 102}, + [1233] = {.lex_state = 43}, + [1234] = {.lex_state = 43}, + [1235] = {.lex_state = 43}, + [1236] = {.lex_state = 43}, + [1237] = {.lex_state = 43}, + [1238] = {.lex_state = 102}, + [1239] = {.lex_state = 102}, + [1240] = {.lex_state = 102}, + [1241] = {.lex_state = 43}, + [1242] = {.lex_state = 43}, + [1243] = {.lex_state = 43}, + [1244] = {.lex_state = 43}, + [1245] = {.lex_state = 43}, + [1246] = {.lex_state = 43}, + [1247] = {.lex_state = 43}, + [1248] = {.lex_state = 43}, + [1249] = {.lex_state = 102}, + [1250] = {.lex_state = 43}, + [1251] = {.lex_state = 43}, + [1252] = {.lex_state = 102}, + [1253] = {.lex_state = 43}, + [1254] = {.lex_state = 102}, + [1255] = {.lex_state = 43}, + [1256] = {.lex_state = 43}, + [1257] = {.lex_state = 43}, + [1258] = {.lex_state = 102}, + [1259] = {.lex_state = 43}, + [1260] = {.lex_state = 102}, + [1261] = {.lex_state = 43}, + [1262] = {.lex_state = 102}, + [1263] = {.lex_state = 102}, + [1264] = {.lex_state = 43}, + [1265] = {.lex_state = 102}, + [1266] = {.lex_state = 42}, + [1267] = {.lex_state = 43}, + [1268] = {.lex_state = 43}, + [1269] = {.lex_state = 42}, + [1270] = {.lex_state = 43}, + [1271] = {.lex_state = 43}, + [1272] = {.lex_state = 102}, + [1273] = {.lex_state = 43}, + [1274] = {.lex_state = 102}, + [1275] = {.lex_state = 43}, + [1276] = {.lex_state = 102}, + [1277] = {.lex_state = 102}, + [1278] = {.lex_state = 102}, + [1279] = {.lex_state = 43}, + [1280] = {.lex_state = 102}, + [1281] = {.lex_state = 43}, + [1282] = {.lex_state = 102}, + [1283] = {.lex_state = 43}, + [1284] = {.lex_state = 102}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 19}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 33}, - [1290] = {.lex_state = 33}, + [1286] = {.lex_state = 102}, + [1287] = {.lex_state = 102}, + [1288] = {.lex_state = 102}, + [1289] = {.lex_state = 102}, + [1290] = {.lex_state = 102}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 28}, - [1293] = {.lex_state = 19}, - [1294] = {.lex_state = 33}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 28}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 28}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, + [1292] = {.lex_state = 102}, + [1293] = {.lex_state = 102}, + [1294] = {.lex_state = 102}, + [1295] = {.lex_state = 46}, + [1296] = {.lex_state = 102}, + [1297] = {.lex_state = 102}, + [1298] = {.lex_state = 102}, + [1299] = {.lex_state = 102}, + [1300] = {.lex_state = 102}, + [1301] = {.lex_state = 102}, + [1302] = {.lex_state = 46}, + [1303] = {.lex_state = 102}, + [1304] = {.lex_state = 102}, + [1305] = {.lex_state = 46}, + [1306] = {.lex_state = 102}, + [1307] = {.lex_state = 102}, + [1308] = {.lex_state = 102}, + [1309] = {.lex_state = 102}, + [1310] = {.lex_state = 102}, + [1311] = {.lex_state = 102}, + [1312] = {.lex_state = 46}, + [1313] = {.lex_state = 46}, + [1314] = {.lex_state = 102}, + [1315] = {.lex_state = 102}, + [1316] = {.lex_state = 102}, + [1317] = {.lex_state = 102}, + [1318] = {.lex_state = 102}, + [1319] = {.lex_state = 102}, + [1320] = {.lex_state = 102}, + [1321] = {.lex_state = 102}, + [1322] = {.lex_state = 102}, + [1323] = {.lex_state = 102}, [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, + [1325] = {.lex_state = 102}, + [1326] = {.lex_state = 102}, + [1327] = {.lex_state = 102}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 28}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 33}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 0}, + [1329] = {.lex_state = 102}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 102}, + [1332] = {.lex_state = 102}, + [1333] = {.lex_state = 102}, + [1334] = {.lex_state = 102}, + [1335] = {.lex_state = 102}, + [1336] = {.lex_state = 102}, + [1337] = {.lex_state = 102}, + [1338] = {.lex_state = 102}, + [1339] = {.lex_state = 102}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 25}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 25}, - [1345] = {.lex_state = 25}, + [1341] = {.lex_state = 102}, + [1342] = {.lex_state = 102}, + [1343] = {.lex_state = 102}, + [1344] = {.lex_state = 102}, + [1345] = {.lex_state = 102}, [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 83}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 83}, - [1350] = {.lex_state = 83}, - [1351] = {.lex_state = 33}, - [1352] = {.lex_state = 83}, - [1353] = {.lex_state = 26}, - [1354] = {.lex_state = 25}, - [1355] = {.lex_state = 33}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 28}, - [1358] = {.lex_state = 33}, - [1359] = {.lex_state = 33}, - [1360] = {.lex_state = 83}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 25}, - [1363] = {.lex_state = 25}, - [1364] = {.lex_state = 25}, - [1365] = {.lex_state = 83}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 83}, - [1368] = {.lex_state = 83}, - [1369] = {.lex_state = 83}, - [1370] = {.lex_state = 26}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 28}, - [1373] = {.lex_state = 25}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 83}, - [1381] = {.lex_state = 25}, - [1382] = {.lex_state = 28}, - [1383] = {.lex_state = 83}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 83}, - [1386] = {.lex_state = 83}, - [1387] = {.lex_state = 25}, - [1388] = {.lex_state = 83}, - [1389] = {.lex_state = 33}, - [1390] = {.lex_state = 26}, - [1391] = {.lex_state = 83}, - [1392] = {.lex_state = 83}, - [1393] = {.lex_state = 33}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 83}, - [1396] = {.lex_state = 33}, + [1347] = {.lex_state = 102}, + [1348] = {.lex_state = 102}, + [1349] = {.lex_state = 102}, + [1350] = {.lex_state = 102}, + [1351] = {.lex_state = 102}, + [1352] = {.lex_state = 102}, + [1353] = {.lex_state = 102}, + [1354] = {.lex_state = 102}, + [1355] = {.lex_state = 102}, + [1356] = {.lex_state = 102}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 102}, + [1359] = {.lex_state = 102}, + [1360] = {.lex_state = 102}, + [1361] = {.lex_state = 43}, + [1362] = {.lex_state = 102}, + [1363] = {.lex_state = 102}, + [1364] = {.lex_state = 102}, + [1365] = {.lex_state = 102}, + [1366] = {.lex_state = 102}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 102}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 102}, + [1371] = {.lex_state = 102}, + [1372] = {.lex_state = 43}, + [1373] = {.lex_state = 102}, + [1374] = {.lex_state = 43}, + [1375] = {.lex_state = 102}, + [1376] = {.lex_state = 102}, + [1377] = {.lex_state = 102}, + [1378] = {.lex_state = 102}, + [1379] = {.lex_state = 102}, + [1380] = {.lex_state = 37}, + [1381] = {.lex_state = 102}, + [1382] = {.lex_state = 102}, + [1383] = {.lex_state = 102}, + [1384] = {.lex_state = 102}, + [1385] = {.lex_state = 102}, + [1386] = {.lex_state = 102}, + [1387] = {.lex_state = 102}, + [1388] = {.lex_state = 102}, + [1389] = {.lex_state = 43}, + [1390] = {.lex_state = 43}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 37}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 26}, + [1395] = {.lex_state = 26}, + [1396] = {.lex_state = 28}, [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 33}, - [1399] = {.lex_state = 25}, - [1400] = {.lex_state = 25}, - [1401] = {.lex_state = 25}, - [1402] = {.lex_state = 25}, - [1403] = {.lex_state = 25}, - [1404] = {.lex_state = 83}, - [1405] = {.lex_state = 25}, - [1406] = {.lex_state = 25}, - [1407] = {.lex_state = 33}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 27}, - [1410] = {.lex_state = 19}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 27}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 19}, - [1415] = {.lex_state = 27}, - [1416] = {.lex_state = 83}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 27}, - [1419] = {.lex_state = 0}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 28}, + [1402] = {.lex_state = 43}, + [1403] = {.lex_state = 28}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 26}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 26}, + [1408] = {.lex_state = 28}, + [1409] = {.lex_state = 28}, + [1410] = {.lex_state = 28}, + [1411] = {.lex_state = 28}, + [1412] = {.lex_state = 28}, + [1413] = {.lex_state = 43}, + [1414] = {.lex_state = 26}, + [1415] = {.lex_state = 102}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 26}, + [1418] = {.lex_state = 28}, + [1419] = {.lex_state = 26}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 19}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 19}, - [1424] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 37}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 37}, [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 27}, + [1426] = {.lex_state = 43}, [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, + [1429] = {.lex_state = 23}, [1430] = {.lex_state = 0}, [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 0}, + [1432] = {.lex_state = 37}, [1433] = {.lex_state = 0}, [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 19}, - [1436] = {.lex_state = 19}, - [1437] = {.lex_state = 19}, - [1438] = {.lex_state = 19}, - [1439] = {.lex_state = 19}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 19}, - [1442] = {.lex_state = 19}, - [1443] = {.lex_state = 27}, - [1444] = {.lex_state = 19}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 43}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 27}, - [1447] = {.lex_state = 19}, - [1448] = {.lex_state = 19}, - [1449] = {.lex_state = 19}, - [1450] = {.lex_state = 19}, + [1446] = {.lex_state = 43}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 33}, - [1453] = {.lex_state = 33}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 0}, [1454] = {.lex_state = 0}, [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0}, + [1456] = {.lex_state = 43}, [1457] = {.lex_state = 0}, [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 33}, + [1459] = {.lex_state = 0}, [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 19}, + [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 0}, + [1465] = {.lex_state = 23}, [1466] = {.lex_state = 0}, [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 33}, - [1469] = {.lex_state = 33}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 0}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 27}, + [1471] = {.lex_state = 0}, [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 27}, + [1475] = {.lex_state = 37}, + [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 33}, + [1478] = {.lex_state = 0}, [1479] = {.lex_state = 0}, [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 83}, - [1482] = {.lex_state = 33}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 27}, + [1484] = {.lex_state = 0}, [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 33}, - [1487] = {.lex_state = 27}, - [1488] = {.lex_state = 33}, + [1486] = {.lex_state = 43}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 27}, - [1492] = {.lex_state = 27}, - [1493] = {.lex_state = 0}, + [1490] = {.lex_state = 23}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 102}, [1494] = {.lex_state = 0}, [1495] = {.lex_state = 0}, [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 19}, - [1499] = {.lex_state = 27}, - [1500] = {.lex_state = 27}, + [1497] = {.lex_state = 37}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 0}, [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 27}, - [1503] = {.lex_state = 33}, - [1504] = {.lex_state = 33}, - [1505] = {.lex_state = 83}, - [1506] = {.lex_state = 27}, - [1507] = {.lex_state = 19}, - [1508] = {.lex_state = 27}, - [1509] = {.lex_state = 27}, - [1510] = {.lex_state = 33}, - [1511] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 23}, + [1508] = {.lex_state = 23}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 37}, + [1511] = {.lex_state = 37}, [1512] = {.lex_state = 0}, [1513] = {.lex_state = 0}, [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 27}, - [1516] = {.lex_state = 27}, - [1517] = {.lex_state = 19}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 33}, - [1520] = {.lex_state = 33}, + [1519] = {.lex_state = 102}, + [1520] = {.lex_state = 0}, [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 19}, + [1523] = {.lex_state = 0}, [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 27}, - [1526] = {.lex_state = 33}, - [1527] = {.lex_state = 27}, - [1528] = {.lex_state = 27}, - [1529] = {.lex_state = 19}, - [1530] = {.lex_state = 27}, - [1531] = {.lex_state = 27}, - [1532] = {.lex_state = 27}, - [1533] = {.lex_state = 33}, + [1525] = {.lex_state = 43}, + [1526] = {.lex_state = 43}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 102}, + [1533] = {.lex_state = 102}, [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 33}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 33}, - [1544] = {.lex_state = 0}, + [1535] = {.lex_state = 29}, + [1536] = {.lex_state = 43}, + [1537] = {.lex_state = 102}, + [1538] = {.lex_state = 102}, + [1539] = {.lex_state = 102}, + [1540] = {.lex_state = 29}, + [1541] = {.lex_state = 30}, + [1542] = {.lex_state = 43}, + [1543] = {.lex_state = 43}, + [1544] = {.lex_state = 102}, [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 33}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 33}, - [1550] = {.lex_state = 33}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 19}, + [1546] = {.lex_state = 102}, + [1547] = {.lex_state = 102}, + [1548] = {.lex_state = 29}, + [1549] = {.lex_state = 102}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 29}, + [1552] = {.lex_state = 29}, [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 33}, + [1554] = {.lex_state = 102}, [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 19}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 33}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 33}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 19}, - [1565] = {.lex_state = 33}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 83}, + [1556] = {.lex_state = 37}, + [1557] = {.lex_state = 102}, + [1558] = {.lex_state = 43}, + [1559] = {.lex_state = 102}, + [1560] = {.lex_state = 102}, + [1561] = {.lex_state = 102}, + [1562] = {.lex_state = 29}, + [1563] = {.lex_state = 102}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 29}, + [1566] = {.lex_state = 30}, + [1567] = {.lex_state = 102}, + [1568] = {.lex_state = 43}, + [1569] = {.lex_state = 0}, [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 33}, - [1573] = {.lex_state = 33}, - [1574] = {.lex_state = 33}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 19}, - [1577] = {.lex_state = 0}, + [1572] = {.lex_state = 43}, + [1573] = {.lex_state = 29}, + [1574] = {.lex_state = 37}, + [1575] = {.lex_state = 102}, + [1576] = {.lex_state = 29}, + [1577] = {.lex_state = 102}, [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 19}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 33}, + [1580] = {.lex_state = 102}, + [1581] = {.lex_state = 43}, + [1582] = {.lex_state = 29}, + [1583] = {.lex_state = 102}, + [1584] = {.lex_state = 43}, + [1585] = {.lex_state = 102}, [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 27}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 33}, - [1590] = {.lex_state = 83}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 83}, - [1593] = {.lex_state = 33}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 37}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 29}, + [1591] = {.lex_state = 30}, + [1592] = {.lex_state = 29}, + [1593] = {.lex_state = 29}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 83}, - [1597] = {.lex_state = 33}, - [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 27}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 27}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, + [1595] = {.lex_state = 29}, + [1596] = {.lex_state = 102}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 29}, + [1599] = {.lex_state = 29}, + [1600] = {.lex_state = 29}, + [1601] = {.lex_state = 29}, + [1602] = {.lex_state = 29}, + [1603] = {.lex_state = 43}, + [1604] = {.lex_state = 29}, [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 33}, - [1607] = {.lex_state = 83}, - [1608] = {.lex_state = 27}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 83}, - [1611] = {.lex_state = 27}, - [1612] = {.lex_state = 83}, - [1613] = {.lex_state = 33}, - [1614] = {.lex_state = 83}, - [1615] = {.lex_state = 33}, - [1616] = {.lex_state = 83}, + [1606] = {.lex_state = 29}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 23}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 36}, + [1613] = {.lex_state = 23}, + [1614] = {.lex_state = 36}, + [1615] = {.lex_state = 36}, + [1616] = {.lex_state = 36}, + [1617] = {.lex_state = 0}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 36}, + [1622] = {.lex_state = 0}, + [1623] = {.lex_state = 36}, + [1624] = {.lex_state = 23}, + [1625] = {.lex_state = 36}, + [1626] = {.lex_state = 102}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 43}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 0}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 0}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 43}, + [1641] = {.lex_state = 23}, + [1642] = {.lex_state = 23}, + [1643] = {.lex_state = 23}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 23}, + [1646] = {.lex_state = 23}, + [1647] = {.lex_state = 23}, + [1648] = {.lex_state = 102}, + [1649] = {.lex_state = 23}, + [1650] = {.lex_state = 23}, + [1651] = {.lex_state = 23}, + [1652] = {.lex_state = 36}, + [1653] = {.lex_state = 23}, + [1654] = {.lex_state = 23}, + [1655] = {.lex_state = 23}, + [1656] = {.lex_state = 36}, + [1657] = {.lex_state = 43}, + [1658] = {.lex_state = 43}, + [1659] = {.lex_state = 0}, + [1660] = {.lex_state = 36}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 43}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 43}, + [1665] = {.lex_state = 36}, + [1666] = {.lex_state = 23}, + [1667] = {.lex_state = 0}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 0}, + [1670] = {.lex_state = 36}, + [1671] = {.lex_state = 36}, + [1672] = {.lex_state = 23}, + [1673] = {.lex_state = 0}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 43}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 23}, + [1678] = {.lex_state = 0}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 36}, + [1681] = {.lex_state = 23}, + [1682] = {.lex_state = 36}, + [1683] = {.lex_state = 36}, + [1684] = {.lex_state = 36}, + [1685] = {.lex_state = 43}, + [1686] = {.lex_state = 23}, + [1687] = {.lex_state = 23}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 43}, + [1690] = {.lex_state = 36}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 0}, + [1693] = {.lex_state = 0}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 36}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 0}, + [1698] = {.lex_state = 0}, + [1699] = {.lex_state = 23}, + [1700] = {.lex_state = 0}, + [1701] = {.lex_state = 43}, + [1702] = {.lex_state = 0}, + [1703] = {.lex_state = 0}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 23}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 36}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 23}, + [1710] = {.lex_state = 0}, + [1711] = {.lex_state = 0}, + [1712] = {.lex_state = 0}, + [1713] = {.lex_state = 23}, + [1714] = {.lex_state = 0}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 0}, + [1718] = {.lex_state = 0}, + [1719] = {.lex_state = 0}, + [1720] = {.lex_state = 36}, + [1721] = {.lex_state = 36}, + [1722] = {.lex_state = 43}, + [1723] = {.lex_state = 43}, + [1724] = {.lex_state = 36}, + [1725] = {.lex_state = 36}, + [1726] = {.lex_state = 0}, + [1727] = {.lex_state = 102}, + [1728] = {.lex_state = 0}, + [1729] = {.lex_state = 43}, + [1730] = {.lex_state = 0}, + [1731] = {.lex_state = 0}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 23}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 23}, + [1737] = {.lex_state = 0}, + [1738] = {.lex_state = 43}, + [1739] = {.lex_state = 43}, + [1740] = {.lex_state = 0}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 36}, + [1743] = {.lex_state = 0}, + [1744] = {.lex_state = 0}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 0}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 0}, + [1751] = {.lex_state = 43}, + [1752] = {.lex_state = 43}, + [1753] = {.lex_state = 43}, + [1754] = {.lex_state = 43}, + [1755] = {.lex_state = 36}, + [1756] = {.lex_state = 43}, + [1757] = {.lex_state = 43}, + [1758] = {.lex_state = 23}, + [1759] = {.lex_state = 102}, + [1760] = {.lex_state = 0}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 0}, + [1764] = {.lex_state = 43}, + [1765] = {.lex_state = 0}, + [1766] = {.lex_state = 36}, + [1767] = {.lex_state = 43}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 36}, + [1770] = {.lex_state = 0}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 36}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 0}, + [1775] = {.lex_state = 36}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 43}, + [1779] = {.lex_state = 43}, + [1780] = {.lex_state = 36}, + [1781] = {.lex_state = 36}, + [1782] = {.lex_state = 43}, + [1783] = {.lex_state = 43}, + [1784] = {.lex_state = 43}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 23}, + [1787] = {.lex_state = 23}, + [1788] = {.lex_state = 43}, + [1789] = {.lex_state = 43}, + [1790] = {.lex_state = 36}, + [1791] = {.lex_state = 0}, + [1792] = {.lex_state = 36}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 36}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 36}, + [1799] = {.lex_state = 0}, + [1800] = {.lex_state = 0}, + [1801] = {.lex_state = 43}, + [1802] = {.lex_state = 43}, + [1803] = {.lex_state = 43}, + [1804] = {.lex_state = 43}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 43}, + [1807] = {.lex_state = 23}, + [1808] = {.lex_state = 0}, + [1809] = {.lex_state = 36}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 43}, + [1812] = {.lex_state = 36}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 0}, + [1815] = {.lex_state = 43}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 23}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 0}, + [1822] = {.lex_state = 36}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 23}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 0}, + [1827] = {.lex_state = 43}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 36}, + [1830] = {.lex_state = 0}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 102}, + [1833] = {.lex_state = 102}, + [1834] = {.lex_state = 43}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 43}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 102}, + [1839] = {.lex_state = 0}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 23}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 43}, + [1846] = {.lex_state = 36}, + [1847] = {.lex_state = 0}, + [1848] = {.lex_state = 0}, + [1849] = {.lex_state = 102}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 102}, + [1852] = {.lex_state = 102}, + [1853] = {.lex_state = 102}, + [1854] = {.lex_state = 36}, + [1855] = {.lex_state = 102}, + [1856] = {.lex_state = 43}, + [1857] = {.lex_state = 102}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13329,6 +14332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(1), [aux_sym_preproc_else_token1] = ACTIONS(1), [aux_sym_preproc_elif_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1), [sym_preproc_directive] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), [anon_sym_defined] = ACTIONS(1), @@ -13379,12 +14384,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1), [anon_sym_register] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), + [anon_sym_thread_local] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), + [anon_sym_constexpr] = ACTIONS(1), [anon_sym_volatile] = ACTIONS(1), [anon_sym_restrict] = ACTIONS(1), [anon_sym___restrict__] = ACTIONS(1), [anon_sym__Atomic] = ACTIONS(1), [anon_sym__Noreturn] = ACTIONS(1), + [anon_sym_noreturn] = ACTIONS(1), [anon_sym_signed] = ACTIONS(1), [anon_sym_unsigned] = ACTIONS(1), [anon_sym_long] = ACTIONS(1), @@ -13439,83 +14447,10566 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [sym_true] = ACTIONS(1), [sym_false] = ACTIONS(1), - [sym_null] = ACTIONS(1), + [anon_sym_NULL] = ACTIONS(1), + [anon_sym_nullptr] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + }, + [1] = { + [sym_translation_unit] = STATE(1826), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1248), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(776), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(922), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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_case_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__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [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_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [2] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1680), + [sym_preproc_elif] = STATE(1680), + [sym_preproc_elifdef] = STATE(1680), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [3] = { + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(1780), + [sym_preproc_elif] = STATE(1780), + [sym_preproc_elifdef] = STATE(1780), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [4] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1616), + [sym_preproc_elif] = STATE(1616), + [sym_preproc_elifdef] = STATE(1616), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [5] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1798), + [sym_preproc_elif] = STATE(1798), + [sym_preproc_elifdef] = STATE(1798), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [6] = { + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(1665), + [sym_preproc_elif] = STATE(1665), + [sym_preproc_elifdef] = STATE(1665), + [sym_function_definition] = STATE(4), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [7] = { + [sym_preproc_include] = STATE(10), + [sym_preproc_def] = STATE(10), + [sym_preproc_function_def] = STATE(10), + [sym_preproc_call] = STATE(10), + [sym_preproc_if] = STATE(10), + [sym_preproc_ifdef] = STATE(10), + [sym_preproc_else] = STATE(1829), + [sym_preproc_elif] = STATE(1829), + [sym_preproc_elifdef] = STATE(1829), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(10), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_case_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_goto_statement] = STATE(10), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [8] = { + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1707), + [sym_preproc_elif] = STATE(1707), + [sym_preproc_elifdef] = STATE(1707), + [sym_function_definition] = STATE(2), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [9] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1724), + [sym_preproc_elif] = STATE(1724), + [sym_preproc_elifdef] = STATE(1724), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [10] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1790), + [sym_preproc_elif] = STATE(1790), + [sym_preproc_elifdef] = STATE(1790), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [11] = { + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(1775), + [sym_preproc_elif] = STATE(1775), + [sym_preproc_elifdef] = STATE(1775), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(5), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_case_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(99), + [aux_sym_preproc_include_token1] = ACTIONS(101), + [aux_sym_preproc_def_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(105), + [aux_sym_preproc_if_token2] = ACTIONS(165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(109), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(117), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(123), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [12] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1772), + [sym_preproc_elif] = STATE(1772), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [13] = { + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(1682), + [sym_preproc_elif] = STATE(1682), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [14] = { + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(1683), + [sym_preproc_elif] = STATE(1683), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [15] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1671), + [sym_preproc_elif] = STATE(1671), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [16] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1809), + [sym_preproc_elif] = STATE(1809), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(217), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [17] = { + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(1792), + [sym_preproc_elif] = STATE(1792), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [18] = { + [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(1614), + [sym_preproc_elif] = STATE(1614), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [19] = { + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(1796), + [sym_preproc_elif] = STATE(1796), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [20] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1250), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(780), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(927), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(228), + [aux_sym_preproc_def_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_typedef] = ACTIONS(260), + [anon_sym_extern] = ACTIONS(263), + [anon_sym___attribute__] = ACTIONS(266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(269), + [anon_sym___declspec] = ACTIONS(272), + [anon_sym___cdecl] = ACTIONS(275), + [anon_sym___clrcall] = ACTIONS(275), + [anon_sym___stdcall] = ACTIONS(275), + [anon_sym___fastcall] = ACTIONS(275), + [anon_sym___thiscall] = ACTIONS(275), + [anon_sym___vectorcall] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_static] = ACTIONS(281), + [anon_sym_auto] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_inline] = ACTIONS(281), + [anon_sym_thread_local] = ACTIONS(281), + [anon_sym_const] = ACTIONS(284), + [anon_sym_constexpr] = ACTIONS(284), + [anon_sym_volatile] = ACTIONS(284), + [anon_sym_restrict] = ACTIONS(284), + [anon_sym___restrict__] = ACTIONS(284), + [anon_sym__Atomic] = ACTIONS(284), + [anon_sym__Noreturn] = ACTIONS(284), + [anon_sym_noreturn] = ACTIONS(284), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [sym_primitive_type] = ACTIONS(290), + [anon_sym_enum] = ACTIONS(293), + [anon_sym_struct] = ACTIONS(296), + [anon_sym_union] = ACTIONS(299), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(305), + [anon_sym_case] = ACTIONS(308), + [anon_sym_default] = ACTIONS(311), + [anon_sym_while] = ACTIONS(314), + [anon_sym_do] = ACTIONS(317), + [anon_sym_for] = ACTIONS(320), + [anon_sym_return] = ACTIONS(323), + [anon_sym_break] = ACTIONS(326), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(332), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym_offsetof] = ACTIONS(341), + [anon_sym__Generic] = ACTIONS(344), + [anon_sym_asm] = ACTIONS(347), + [anon_sym___asm__] = ACTIONS(347), + [sym_number_literal] = ACTIONS(350), + [anon_sym_L_SQUOTE] = ACTIONS(353), + [anon_sym_u_SQUOTE] = ACTIONS(353), + [anon_sym_U_SQUOTE] = ACTIONS(353), + [anon_sym_u8_SQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(353), + [anon_sym_L_DQUOTE] = ACTIONS(356), + [anon_sym_u_DQUOTE] = ACTIONS(356), + [anon_sym_U_DQUOTE] = ACTIONS(356), + [anon_sym_u8_DQUOTE] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(356), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [anon_sym_NULL] = ACTIONS(362), + [anon_sym_nullptr] = ACTIONS(362), + [sym_comment] = ACTIONS(3), + }, + [21] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1766), + [sym_preproc_elif] = STATE(1766), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [22] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1621), + [sym_preproc_elif] = STATE(1621), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [23] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1684), + [sym_preproc_elif] = STATE(1684), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [24] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(1725), + [sym_preproc_elif] = STATE(1725), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [25] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1612), + [sym_preproc_elif] = STATE(1612), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [26] = { + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(1615), + [sym_preproc_elif] = STATE(1615), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(167), + [aux_sym_preproc_include_token1] = ACTIONS(169), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(173), + [aux_sym_preproc_if_token2] = ACTIONS(375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(177), + [aux_sym_preproc_else_token1] = ACTIONS(111), + [aux_sym_preproc_elif_token1] = ACTIONS(113), + [sym_preproc_directive] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(185), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [27] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1251), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(779), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(931), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(377), + [aux_sym_preproc_include_token1] = ACTIONS(380), + [aux_sym_preproc_def_token1] = ACTIONS(383), + [aux_sym_preproc_if_token1] = ACTIONS(386), + [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(389), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(237), + [sym_preproc_directive] = ACTIONS(392), + [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(395), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(401), + [anon_sym___attribute__] = ACTIONS(266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(269), + [anon_sym___declspec] = ACTIONS(272), + [anon_sym___cdecl] = ACTIONS(275), + [anon_sym___clrcall] = ACTIONS(275), + [anon_sym___stdcall] = ACTIONS(275), + [anon_sym___fastcall] = ACTIONS(275), + [anon_sym___thiscall] = ACTIONS(275), + [anon_sym___vectorcall] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_static] = ACTIONS(281), + [anon_sym_auto] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_inline] = ACTIONS(281), + [anon_sym_thread_local] = ACTIONS(281), + [anon_sym_const] = ACTIONS(284), + [anon_sym_constexpr] = ACTIONS(284), + [anon_sym_volatile] = ACTIONS(284), + [anon_sym_restrict] = ACTIONS(284), + [anon_sym___restrict__] = ACTIONS(284), + [anon_sym__Atomic] = ACTIONS(284), + [anon_sym__Noreturn] = ACTIONS(284), + [anon_sym_noreturn] = ACTIONS(284), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [sym_primitive_type] = ACTIONS(290), + [anon_sym_enum] = ACTIONS(293), + [anon_sym_struct] = ACTIONS(296), + [anon_sym_union] = ACTIONS(299), + [anon_sym_if] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(410), + [anon_sym_case] = ACTIONS(413), + [anon_sym_default] = ACTIONS(416), + [anon_sym_while] = ACTIONS(419), + [anon_sym_do] = ACTIONS(422), + [anon_sym_for] = ACTIONS(425), + [anon_sym_return] = ACTIONS(428), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(437), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym_offsetof] = ACTIONS(341), + [anon_sym__Generic] = ACTIONS(344), + [anon_sym_asm] = ACTIONS(347), + [anon_sym___asm__] = ACTIONS(347), + [sym_number_literal] = ACTIONS(350), + [anon_sym_L_SQUOTE] = ACTIONS(353), + [anon_sym_u_SQUOTE] = ACTIONS(353), + [anon_sym_U_SQUOTE] = ACTIONS(353), + [anon_sym_u8_SQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(353), + [anon_sym_L_DQUOTE] = ACTIONS(356), + [anon_sym_u_DQUOTE] = ACTIONS(356), + [anon_sym_U_DQUOTE] = ACTIONS(356), + [anon_sym_u8_DQUOTE] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(356), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [anon_sym_NULL] = ACTIONS(362), + [anon_sym_nullptr] = ACTIONS(362), + [sym_comment] = ACTIONS(3), + }, + [28] = { + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(45), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(460), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [29] = { + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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_case_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__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [30] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1243), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(775), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(942), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(488), + [aux_sym_preproc_include_token1] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(494), + [aux_sym_preproc_if_token1] = ACTIONS(497), + [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(500), + [sym_preproc_directive] = ACTIONS(503), + [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(506), + [anon_sym_typedef] = ACTIONS(509), + [anon_sym_extern] = ACTIONS(512), + [anon_sym___attribute__] = ACTIONS(266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(269), + [anon_sym___declspec] = ACTIONS(272), + [anon_sym___cdecl] = ACTIONS(275), + [anon_sym___clrcall] = ACTIONS(275), + [anon_sym___stdcall] = ACTIONS(275), + [anon_sym___fastcall] = ACTIONS(275), + [anon_sym___thiscall] = ACTIONS(275), + [anon_sym___vectorcall] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_static] = ACTIONS(281), + [anon_sym_auto] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_inline] = ACTIONS(281), + [anon_sym_thread_local] = ACTIONS(281), + [anon_sym_const] = ACTIONS(284), + [anon_sym_constexpr] = ACTIONS(284), + [anon_sym_volatile] = ACTIONS(284), + [anon_sym_restrict] = ACTIONS(284), + [anon_sym___restrict__] = ACTIONS(284), + [anon_sym__Atomic] = ACTIONS(284), + [anon_sym__Noreturn] = ACTIONS(284), + [anon_sym_noreturn] = ACTIONS(284), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [sym_primitive_type] = ACTIONS(290), + [anon_sym_enum] = ACTIONS(293), + [anon_sym_struct] = ACTIONS(296), + [anon_sym_union] = ACTIONS(299), + [anon_sym_if] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(521), + [anon_sym_case] = ACTIONS(524), + [anon_sym_default] = ACTIONS(527), + [anon_sym_while] = ACTIONS(530), + [anon_sym_do] = ACTIONS(533), + [anon_sym_for] = ACTIONS(536), + [anon_sym_return] = ACTIONS(539), + [anon_sym_break] = ACTIONS(542), + [anon_sym_continue] = ACTIONS(545), + [anon_sym_goto] = ACTIONS(548), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym_offsetof] = ACTIONS(341), + [anon_sym__Generic] = ACTIONS(344), + [anon_sym_asm] = ACTIONS(347), + [anon_sym___asm__] = ACTIONS(347), + [sym_number_literal] = ACTIONS(350), + [anon_sym_L_SQUOTE] = ACTIONS(353), + [anon_sym_u_SQUOTE] = ACTIONS(353), + [anon_sym_U_SQUOTE] = ACTIONS(353), + [anon_sym_u8_SQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(353), + [anon_sym_L_DQUOTE] = ACTIONS(356), + [anon_sym_u_DQUOTE] = ACTIONS(356), + [anon_sym_U_DQUOTE] = ACTIONS(356), + [anon_sym_u8_DQUOTE] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(356), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [anon_sym_NULL] = ACTIONS(362), + [anon_sym_nullptr] = ACTIONS(362), + [sym_comment] = ACTIONS(3), + }, + [32] = { + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [33] = { + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(553), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [34] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1248), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(776), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(922), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(555), + [sym_identifier] = ACTIONS(557), + [aux_sym_preproc_include_token1] = ACTIONS(560), + [aux_sym_preproc_def_token1] = ACTIONS(563), + [aux_sym_preproc_if_token1] = ACTIONS(566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(569), + [sym_preproc_directive] = ACTIONS(572), + [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(575), + [anon_sym_typedef] = ACTIONS(578), + [anon_sym_extern] = ACTIONS(581), + [anon_sym___attribute__] = ACTIONS(266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(269), + [anon_sym___declspec] = ACTIONS(272), + [anon_sym___cdecl] = ACTIONS(275), + [anon_sym___clrcall] = ACTIONS(275), + [anon_sym___stdcall] = ACTIONS(275), + [anon_sym___fastcall] = ACTIONS(275), + [anon_sym___thiscall] = ACTIONS(275), + [anon_sym___vectorcall] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_static] = ACTIONS(281), + [anon_sym_auto] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_inline] = ACTIONS(281), + [anon_sym_thread_local] = ACTIONS(281), + [anon_sym_const] = ACTIONS(284), + [anon_sym_constexpr] = ACTIONS(284), + [anon_sym_volatile] = ACTIONS(284), + [anon_sym_restrict] = ACTIONS(284), + [anon_sym___restrict__] = ACTIONS(284), + [anon_sym__Atomic] = ACTIONS(284), + [anon_sym__Noreturn] = ACTIONS(284), + [anon_sym_noreturn] = ACTIONS(284), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [sym_primitive_type] = ACTIONS(290), + [anon_sym_enum] = ACTIONS(293), + [anon_sym_struct] = ACTIONS(296), + [anon_sym_union] = ACTIONS(299), + [anon_sym_if] = ACTIONS(587), + [anon_sym_switch] = ACTIONS(590), + [anon_sym_case] = ACTIONS(593), + [anon_sym_default] = ACTIONS(596), + [anon_sym_while] = ACTIONS(599), + [anon_sym_do] = ACTIONS(602), + [anon_sym_for] = ACTIONS(605), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_goto] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym_offsetof] = ACTIONS(341), + [anon_sym__Generic] = ACTIONS(344), + [anon_sym_asm] = ACTIONS(347), + [anon_sym___asm__] = ACTIONS(347), + [sym_number_literal] = ACTIONS(350), + [anon_sym_L_SQUOTE] = ACTIONS(353), + [anon_sym_u_SQUOTE] = ACTIONS(353), + [anon_sym_U_SQUOTE] = ACTIONS(353), + [anon_sym_u8_SQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(353), + [anon_sym_L_DQUOTE] = ACTIONS(356), + [anon_sym_u_DQUOTE] = ACTIONS(356), + [anon_sym_U_DQUOTE] = ACTIONS(356), + [anon_sym_u8_DQUOTE] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(356), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [anon_sym_NULL] = ACTIONS(362), + [anon_sym_nullptr] = ACTIONS(362), + [sym_comment] = ACTIONS(3), + }, + [35] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [36] = { + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1243), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(775), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(942), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(622), + [aux_sym_preproc_include_token1] = ACTIONS(624), + [aux_sym_preproc_def_token1] = ACTIONS(626), + [aux_sym_preproc_if_token1] = ACTIONS(628), + [aux_sym_preproc_if_token2] = ACTIONS(630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(632), + [sym_preproc_directive] = ACTIONS(634), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_typedef] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(640), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [37] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(666), + [aux_sym_preproc_include_token1] = ACTIONS(669), + [aux_sym_preproc_def_token1] = ACTIONS(672), + [aux_sym_preproc_if_token1] = ACTIONS(675), + [aux_sym_preproc_ifdef_token1] = ACTIONS(678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(678), + [sym_preproc_directive] = ACTIONS(681), + [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(684), + [anon_sym_typedef] = ACTIONS(687), + [anon_sym_extern] = ACTIONS(690), + [anon_sym___attribute__] = ACTIONS(266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(269), + [anon_sym___declspec] = ACTIONS(272), + [anon_sym___cdecl] = ACTIONS(275), + [anon_sym___clrcall] = ACTIONS(275), + [anon_sym___stdcall] = ACTIONS(275), + [anon_sym___fastcall] = ACTIONS(275), + [anon_sym___thiscall] = ACTIONS(275), + [anon_sym___vectorcall] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_static] = ACTIONS(281), + [anon_sym_auto] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_inline] = ACTIONS(281), + [anon_sym_thread_local] = ACTIONS(281), + [anon_sym_const] = ACTIONS(284), + [anon_sym_constexpr] = ACTIONS(284), + [anon_sym_volatile] = ACTIONS(284), + [anon_sym_restrict] = ACTIONS(284), + [anon_sym___restrict__] = ACTIONS(284), + [anon_sym__Atomic] = ACTIONS(284), + [anon_sym__Noreturn] = ACTIONS(284), + [anon_sym_noreturn] = ACTIONS(284), + [anon_sym_signed] = ACTIONS(287), + [anon_sym_unsigned] = ACTIONS(287), + [anon_sym_long] = ACTIONS(287), + [anon_sym_short] = ACTIONS(287), + [sym_primitive_type] = ACTIONS(290), + [anon_sym_enum] = ACTIONS(293), + [anon_sym_struct] = ACTIONS(296), + [anon_sym_union] = ACTIONS(299), + [anon_sym_if] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(699), + [anon_sym_case] = ACTIONS(702), + [anon_sym_default] = ACTIONS(705), + [anon_sym_while] = ACTIONS(708), + [anon_sym_do] = ACTIONS(711), + [anon_sym_for] = ACTIONS(714), + [anon_sym_return] = ACTIONS(717), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(723), + [anon_sym_goto] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(338), + [anon_sym_offsetof] = ACTIONS(341), + [anon_sym__Generic] = ACTIONS(344), + [anon_sym_asm] = ACTIONS(347), + [anon_sym___asm__] = ACTIONS(347), + [sym_number_literal] = ACTIONS(350), + [anon_sym_L_SQUOTE] = ACTIONS(353), + [anon_sym_u_SQUOTE] = ACTIONS(353), + [anon_sym_U_SQUOTE] = ACTIONS(353), + [anon_sym_u8_SQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(353), + [anon_sym_L_DQUOTE] = ACTIONS(356), + [anon_sym_u_DQUOTE] = ACTIONS(356), + [anon_sym_U_DQUOTE] = ACTIONS(356), + [anon_sym_u8_DQUOTE] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(356), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [anon_sym_NULL] = ACTIONS(362), + [anon_sym_nullptr] = ACTIONS(362), + [sym_comment] = ACTIONS(3), + }, + [38] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [39] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [40] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [41] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [42] = { + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [43] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [44] = { + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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_case_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__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [45] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [47] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1248), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(776), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(922), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(747), + [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_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [48] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [49] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [50] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [51] = { + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [52] = { + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1243), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(775), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(942), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(622), + [aux_sym_preproc_include_token1] = ACTIONS(624), + [aux_sym_preproc_def_token1] = ACTIONS(626), + [aux_sym_preproc_if_token1] = ACTIONS(628), + [aux_sym_preproc_if_token2] = ACTIONS(757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(632), + [sym_preproc_directive] = ACTIONS(634), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_typedef] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(640), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [53] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1241), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_ms_call_modifier] = STATE(781), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(925), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [aux_sym_preproc_def_token1] = ACTIONS(444), + [aux_sym_preproc_if_token1] = ACTIONS(446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(450), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(456), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [54] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1233), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(761), + [aux_sym_preproc_include_token1] = ACTIONS(764), + [aux_sym_preproc_def_token1] = ACTIONS(764), + [aux_sym_preproc_if_token1] = ACTIONS(764), + [aux_sym_preproc_if_token2] = ACTIONS(764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(764), + [aux_sym_preproc_else_token1] = ACTIONS(764), + [aux_sym_preproc_elif_token1] = ACTIONS(764), + [aux_sym_preproc_elifdef_token1] = ACTIONS(764), + [aux_sym_preproc_elifdef_token2] = ACTIONS(764), + [sym_preproc_directive] = ACTIONS(764), + [anon_sym_LPAREN2] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_typedef] = ACTIONS(781), + [anon_sym_extern] = ACTIONS(784), + [anon_sym___attribute__] = ACTIONS(787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(790), + [anon_sym___declspec] = ACTIONS(793), + [anon_sym___cdecl] = ACTIONS(764), + [anon_sym___clrcall] = ACTIONS(764), + [anon_sym___stdcall] = ACTIONS(764), + [anon_sym___fastcall] = ACTIONS(764), + [anon_sym___thiscall] = ACTIONS(764), + [anon_sym___vectorcall] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_static] = ACTIONS(784), + [anon_sym_auto] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_inline] = ACTIONS(784), + [anon_sym_thread_local] = ACTIONS(784), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym_signed] = ACTIONS(802), + [anon_sym_unsigned] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [sym_primitive_type] = ACTIONS(805), + [anon_sym_enum] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(811), + [anon_sym_union] = ACTIONS(814), + [anon_sym_if] = ACTIONS(817), + [anon_sym_else] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(820), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_while] = ACTIONS(823), + [anon_sym_do] = ACTIONS(826), + [anon_sym_for] = ACTIONS(829), + [anon_sym_return] = ACTIONS(832), + [anon_sym_break] = ACTIONS(835), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_goto] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_sizeof] = ACTIONS(847), + [anon_sym_offsetof] = ACTIONS(850), + [anon_sym__Generic] = ACTIONS(853), + [anon_sym_asm] = ACTIONS(856), + [anon_sym___asm__] = ACTIONS(856), + [sym_number_literal] = ACTIONS(859), + [anon_sym_L_SQUOTE] = ACTIONS(862), + [anon_sym_u_SQUOTE] = ACTIONS(862), + [anon_sym_U_SQUOTE] = ACTIONS(862), + [anon_sym_u8_SQUOTE] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_L_DQUOTE] = ACTIONS(865), + [anon_sym_u_DQUOTE] = ACTIONS(865), + [anon_sym_U_DQUOTE] = ACTIONS(865), + [anon_sym_u8_DQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_true] = ACTIONS(868), + [sym_false] = ACTIONS(868), + [anon_sym_NULL] = ACTIONS(871), + [anon_sym_nullptr] = ACTIONS(871), + [sym_comment] = ACTIONS(3), + }, + [55] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1233), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(874), + [aux_sym_preproc_include_token1] = ACTIONS(876), + [aux_sym_preproc_def_token1] = ACTIONS(876), + [aux_sym_preproc_if_token1] = ACTIONS(876), + [aux_sym_preproc_if_token2] = ACTIONS(876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(876), + [aux_sym_preproc_else_token1] = ACTIONS(876), + [aux_sym_preproc_elif_token1] = ACTIONS(876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(876), + [sym_preproc_directive] = ACTIONS(876), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(876), + [anon_sym___clrcall] = ACTIONS(876), + [anon_sym___stdcall] = ACTIONS(876), + [anon_sym___fastcall] = ACTIONS(876), + [anon_sym___thiscall] = ACTIONS(876), + [anon_sym___vectorcall] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_else] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [56] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1233), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(874), + [aux_sym_preproc_include_token1] = ACTIONS(878), + [aux_sym_preproc_def_token1] = ACTIONS(878), + [aux_sym_preproc_if_token1] = ACTIONS(878), + [aux_sym_preproc_if_token2] = ACTIONS(878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(878), + [aux_sym_preproc_else_token1] = ACTIONS(878), + [aux_sym_preproc_elif_token1] = ACTIONS(878), + [aux_sym_preproc_elifdef_token1] = ACTIONS(878), + [aux_sym_preproc_elifdef_token2] = ACTIONS(878), + [sym_preproc_directive] = ACTIONS(878), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(878), + [anon_sym___clrcall] = ACTIONS(878), + [anon_sym___stdcall] = ACTIONS(878), + [anon_sym___fastcall] = ACTIONS(878), + [anon_sym___thiscall] = ACTIONS(878), + [anon_sym___vectorcall] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_else] = ACTIONS(878), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [57] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1233), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(874), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_if_token2] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [aux_sym_preproc_else_token1] = ACTIONS(880), + [aux_sym_preproc_elif_token1] = ACTIONS(880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [58] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1233), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(874), + [aux_sym_preproc_include_token1] = ACTIONS(882), + [aux_sym_preproc_def_token1] = ACTIONS(882), + [aux_sym_preproc_if_token1] = ACTIONS(882), + [aux_sym_preproc_if_token2] = ACTIONS(882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(882), + [aux_sym_preproc_else_token1] = ACTIONS(882), + [aux_sym_preproc_elif_token1] = ACTIONS(882), + [aux_sym_preproc_elifdef_token1] = ACTIONS(882), + [aux_sym_preproc_elifdef_token2] = ACTIONS(882), + [sym_preproc_directive] = ACTIONS(882), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_typedef] = ACTIONS(121), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(882), + [anon_sym___clrcall] = ACTIONS(882), + [anon_sym___stdcall] = ACTIONS(882), + [anon_sym___fastcall] = ACTIONS(882), + [anon_sym___thiscall] = ACTIONS(882), + [anon_sym___vectorcall] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(127), + [anon_sym_else] = ACTIONS(882), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [59] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(884), + [aux_sym_preproc_include_token1] = ACTIONS(876), + [aux_sym_preproc_def_token1] = ACTIONS(876), + [aux_sym_preproc_if_token1] = ACTIONS(876), + [aux_sym_preproc_if_token2] = ACTIONS(876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(876), + [aux_sym_preproc_else_token1] = ACTIONS(876), + [aux_sym_preproc_elif_token1] = ACTIONS(876), + [sym_preproc_directive] = ACTIONS(876), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(876), + [anon_sym___clrcall] = ACTIONS(876), + [anon_sym___stdcall] = ACTIONS(876), + [anon_sym___fastcall] = ACTIONS(876), + [anon_sym___thiscall] = ACTIONS(876), + [anon_sym___vectorcall] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [60] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(884), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_if_token2] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [aux_sym_preproc_else_token1] = ACTIONS(880), + [aux_sym_preproc_elif_token1] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(884), + [aux_sym_preproc_include_token1] = ACTIONS(878), + [aux_sym_preproc_def_token1] = ACTIONS(878), + [aux_sym_preproc_if_token1] = ACTIONS(878), + [aux_sym_preproc_if_token2] = ACTIONS(878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(878), + [aux_sym_preproc_else_token1] = ACTIONS(878), + [aux_sym_preproc_elif_token1] = ACTIONS(878), + [sym_preproc_directive] = ACTIONS(878), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(878), + [anon_sym___clrcall] = ACTIONS(878), + [anon_sym___stdcall] = ACTIONS(878), + [anon_sym___fastcall] = ACTIONS(878), + [anon_sym___thiscall] = ACTIONS(878), + [anon_sym___vectorcall] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(878), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [62] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(886), + [aux_sym_preproc_include_token1] = ACTIONS(764), + [aux_sym_preproc_def_token1] = ACTIONS(764), + [aux_sym_preproc_if_token1] = ACTIONS(764), + [aux_sym_preproc_if_token2] = ACTIONS(764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(764), + [aux_sym_preproc_else_token1] = ACTIONS(764), + [aux_sym_preproc_elif_token1] = ACTIONS(764), + [sym_preproc_directive] = ACTIONS(764), + [anon_sym_LPAREN2] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_typedef] = ACTIONS(892), + [anon_sym_extern] = ACTIONS(784), + [anon_sym___attribute__] = ACTIONS(787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(790), + [anon_sym___declspec] = ACTIONS(793), + [anon_sym___cdecl] = ACTIONS(764), + [anon_sym___clrcall] = ACTIONS(764), + [anon_sym___stdcall] = ACTIONS(764), + [anon_sym___fastcall] = ACTIONS(764), + [anon_sym___thiscall] = ACTIONS(764), + [anon_sym___vectorcall] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_static] = ACTIONS(784), + [anon_sym_auto] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_inline] = ACTIONS(784), + [anon_sym_thread_local] = ACTIONS(784), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym_signed] = ACTIONS(802), + [anon_sym_unsigned] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [sym_primitive_type] = ACTIONS(805), + [anon_sym_enum] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(811), + [anon_sym_union] = ACTIONS(814), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_while] = ACTIONS(904), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(913), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_sizeof] = ACTIONS(847), + [anon_sym_offsetof] = ACTIONS(850), + [anon_sym__Generic] = ACTIONS(853), + [anon_sym_asm] = ACTIONS(856), + [anon_sym___asm__] = ACTIONS(856), + [sym_number_literal] = ACTIONS(859), + [anon_sym_L_SQUOTE] = ACTIONS(862), + [anon_sym_u_SQUOTE] = ACTIONS(862), + [anon_sym_U_SQUOTE] = ACTIONS(862), + [anon_sym_u8_SQUOTE] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_L_DQUOTE] = ACTIONS(865), + [anon_sym_u_DQUOTE] = ACTIONS(865), + [anon_sym_U_DQUOTE] = ACTIONS(865), + [anon_sym_u8_DQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_true] = ACTIONS(868), + [sym_false] = ACTIONS(868), + [anon_sym_NULL] = ACTIONS(871), + [anon_sym_nullptr] = ACTIONS(871), + [sym_comment] = ACTIONS(3), + }, + [63] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(884), + [aux_sym_preproc_include_token1] = ACTIONS(882), + [aux_sym_preproc_def_token1] = ACTIONS(882), + [aux_sym_preproc_if_token1] = ACTIONS(882), + [aux_sym_preproc_if_token2] = ACTIONS(882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(882), + [aux_sym_preproc_else_token1] = ACTIONS(882), + [aux_sym_preproc_elif_token1] = ACTIONS(882), + [sym_preproc_directive] = ACTIONS(882), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_typedef] = ACTIONS(183), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(882), + [anon_sym___clrcall] = ACTIONS(882), + [anon_sym___stdcall] = ACTIONS(882), + [anon_sym___fastcall] = ACTIONS(882), + [anon_sym___thiscall] = ACTIONS(882), + [anon_sym___vectorcall] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(882), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [64] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1237), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(925), + [aux_sym_preproc_include_token1] = ACTIONS(878), + [aux_sym_preproc_def_token1] = ACTIONS(878), + [aux_sym_preproc_if_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(878), + [sym_preproc_directive] = ACTIONS(878), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(878), + [anon_sym___clrcall] = ACTIONS(878), + [anon_sym___stdcall] = ACTIONS(878), + [anon_sym___fastcall] = ACTIONS(878), + [anon_sym___thiscall] = ACTIONS(878), + [anon_sym___vectorcall] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_else] = ACTIONS(878), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [65] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1237), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(925), + [aux_sym_preproc_include_token1] = ACTIONS(876), + [aux_sym_preproc_def_token1] = ACTIONS(876), + [aux_sym_preproc_if_token1] = ACTIONS(876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(876), + [sym_preproc_directive] = ACTIONS(876), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(876), + [anon_sym___clrcall] = ACTIONS(876), + [anon_sym___stdcall] = ACTIONS(876), + [anon_sym___fastcall] = ACTIONS(876), + [anon_sym___thiscall] = ACTIONS(876), + [anon_sym___vectorcall] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_else] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [66] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1237), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(925), + [aux_sym_preproc_include_token1] = ACTIONS(882), + [aux_sym_preproc_def_token1] = ACTIONS(882), + [aux_sym_preproc_if_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(882), + [sym_preproc_directive] = ACTIONS(882), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(882), + [anon_sym___clrcall] = ACTIONS(882), + [anon_sym___stdcall] = ACTIONS(882), + [anon_sym___fastcall] = ACTIONS(882), + [anon_sym___thiscall] = ACTIONS(882), + [anon_sym___vectorcall] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(462), + [anon_sym_else] = ACTIONS(882), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [67] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1237), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(933), + [aux_sym_preproc_include_token1] = ACTIONS(764), + [aux_sym_preproc_def_token1] = ACTIONS(764), + [aux_sym_preproc_if_token1] = ACTIONS(764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(764), + [sym_preproc_directive] = ACTIONS(764), + [anon_sym_LPAREN2] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_typedef] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(784), + [anon_sym___attribute__] = ACTIONS(787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(790), + [anon_sym___declspec] = ACTIONS(793), + [anon_sym___cdecl] = ACTIONS(764), + [anon_sym___clrcall] = ACTIONS(764), + [anon_sym___stdcall] = ACTIONS(764), + [anon_sym___fastcall] = ACTIONS(764), + [anon_sym___thiscall] = ACTIONS(764), + [anon_sym___vectorcall] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_static] = ACTIONS(784), + [anon_sym_auto] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_inline] = ACTIONS(784), + [anon_sym_thread_local] = ACTIONS(784), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym_signed] = ACTIONS(802), + [anon_sym_unsigned] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [sym_primitive_type] = ACTIONS(805), + [anon_sym_enum] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(811), + [anon_sym_union] = ACTIONS(814), + [anon_sym_if] = ACTIONS(947), + [anon_sym_else] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(962), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_sizeof] = ACTIONS(847), + [anon_sym_offsetof] = ACTIONS(850), + [anon_sym__Generic] = ACTIONS(853), + [anon_sym_asm] = ACTIONS(856), + [anon_sym___asm__] = ACTIONS(856), + [sym_number_literal] = ACTIONS(859), + [anon_sym_L_SQUOTE] = ACTIONS(862), + [anon_sym_u_SQUOTE] = ACTIONS(862), + [anon_sym_U_SQUOTE] = ACTIONS(862), + [anon_sym_u8_SQUOTE] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_L_DQUOTE] = ACTIONS(865), + [anon_sym_u_DQUOTE] = ACTIONS(865), + [anon_sym_U_DQUOTE] = ACTIONS(865), + [anon_sym_u8_DQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_true] = ACTIONS(868), + [sym_false] = ACTIONS(868), + [anon_sym_NULL] = ACTIONS(871), + [anon_sym_nullptr] = ACTIONS(871), + [sym_comment] = ACTIONS(3), + }, + [68] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [1] = { - [sym_translation_unit] = STATE(1586), - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1075), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(670), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(892), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [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), + [69] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1246), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(764), + [aux_sym_preproc_def_token1] = ACTIONS(764), + [aux_sym_preproc_if_token1] = ACTIONS(764), + [aux_sym_preproc_if_token2] = ACTIONS(764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(764), + [sym_preproc_directive] = ACTIONS(764), + [anon_sym_LPAREN2] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(784), + [anon_sym___attribute__] = ACTIONS(787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(790), + [anon_sym___declspec] = ACTIONS(793), + [anon_sym___cdecl] = ACTIONS(764), + [anon_sym___clrcall] = ACTIONS(764), + [anon_sym___stdcall] = ACTIONS(764), + [anon_sym___fastcall] = ACTIONS(764), + [anon_sym___thiscall] = ACTIONS(764), + [anon_sym___vectorcall] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_static] = ACTIONS(784), + [anon_sym_auto] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_inline] = ACTIONS(784), + [anon_sym_thread_local] = ACTIONS(784), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym_signed] = ACTIONS(802), + [anon_sym_unsigned] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [sym_primitive_type] = ACTIONS(805), + [anon_sym_enum] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(811), + [anon_sym_union] = ACTIONS(814), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(999), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_goto] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_sizeof] = ACTIONS(847), + [anon_sym_offsetof] = ACTIONS(850), + [anon_sym__Generic] = ACTIONS(853), + [anon_sym_asm] = ACTIONS(856), + [anon_sym___asm__] = ACTIONS(856), + [sym_number_literal] = ACTIONS(859), + [anon_sym_L_SQUOTE] = ACTIONS(862), + [anon_sym_u_SQUOTE] = ACTIONS(862), + [anon_sym_U_SQUOTE] = ACTIONS(862), + [anon_sym_u8_SQUOTE] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_L_DQUOTE] = ACTIONS(865), + [anon_sym_u_DQUOTE] = ACTIONS(865), + [anon_sym_U_DQUOTE] = ACTIONS(865), + [anon_sym_u8_DQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_true] = ACTIONS(868), + [sym_false] = ACTIONS(868), + [anon_sym_NULL] = ACTIONS(871), + [anon_sym_nullptr] = ACTIONS(871), + [sym_comment] = ACTIONS(3), + }, + [70] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1246), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(876), + [aux_sym_preproc_def_token1] = ACTIONS(876), + [aux_sym_preproc_if_token1] = ACTIONS(876), + [aux_sym_preproc_if_token2] = ACTIONS(876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(876), + [sym_preproc_directive] = ACTIONS(876), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_typedef] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(876), + [anon_sym___clrcall] = ACTIONS(876), + [anon_sym___stdcall] = ACTIONS(876), + [anon_sym___fastcall] = ACTIONS(876), + [anon_sym___thiscall] = ACTIONS(876), + [anon_sym___vectorcall] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(644), + [anon_sym_else] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [71] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(77), + [ts_builtin_sym_end] = ACTIONS(931), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(882), + [aux_sym_preproc_def_token1] = ACTIONS(882), + [aux_sym_preproc_if_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(882), + [sym_preproc_directive] = ACTIONS(882), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13525,27 +25016,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(882), + [anon_sym___clrcall] = ACTIONS(882), + [anon_sym___stdcall] = ACTIONS(882), + [anon_sym___fastcall] = ACTIONS(882), + [anon_sym___thiscall] = ACTIONS(882), + [anon_sym___vectorcall] = ACTIONS(882), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -13555,9 +25049,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(882), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), + [anon_sym_case] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -13585,86 +25080,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [2] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1502), - [sym_preproc_elif] = STATE(1502), - [sym_function_definition] = STATE(6), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [72] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1246), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(878), + [aux_sym_preproc_def_token1] = ACTIONS(878), + [aux_sym_preproc_if_token1] = ACTIONS(878), + [aux_sym_preproc_if_token2] = ACTIONS(878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(878), + [sym_preproc_directive] = ACTIONS(878), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13672,29 +25154,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_typedef] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym___cdecl] = ACTIONS(878), + [anon_sym___clrcall] = ACTIONS(878), + [anon_sym___stdcall] = ACTIONS(878), + [anon_sym___fastcall] = ACTIONS(878), + [anon_sym___thiscall] = ACTIONS(878), + [anon_sym___vectorcall] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -13703,17 +25188,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_if] = ACTIONS(644), + [anon_sym_else] = ACTIONS(878), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13734,86 +25220,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [3] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(1500), - [sym_preproc_elif] = STATE(1500), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_case_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_goto_statement] = STATE(11), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [73] = { + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1246), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(70), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(882), + [aux_sym_preproc_def_token1] = ACTIONS(882), + [aux_sym_preproc_if_token1] = ACTIONS(882), + [aux_sym_preproc_if_token2] = ACTIONS(882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(882), + [sym_preproc_directive] = ACTIONS(882), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13821,29 +25294,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_typedef] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym___cdecl] = ACTIONS(882), + [anon_sym___clrcall] = ACTIONS(882), + [anon_sym___stdcall] = ACTIONS(882), + [anon_sym___fastcall] = ACTIONS(882), + [anon_sym___thiscall] = ACTIONS(882), + [anon_sym___vectorcall] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -13852,17 +25328,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_if] = ACTIONS(644), + [anon_sym_else] = ACTIONS(882), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13883,86 +25360,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [4] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1611), - [sym_preproc_elif] = STATE(1611), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [74] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1237), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(925), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13970,29 +25433,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(974), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -14001,17 +25468,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_if] = ACTIONS(462), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14032,86 +25500,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [5] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1409), - [sym_preproc_elif] = STATE(1409), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [75] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(878), + [aux_sym_preproc_def_token1] = ACTIONS(878), + [aux_sym_preproc_if_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(878), + [sym_preproc_directive] = ACTIONS(878), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14119,29 +25574,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym___cdecl] = ACTIONS(878), + [anon_sym___clrcall] = ACTIONS(878), + [anon_sym___stdcall] = ACTIONS(878), + [anon_sym___fastcall] = ACTIONS(878), + [anon_sym___thiscall] = ACTIONS(878), + [anon_sym___vectorcall] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -14150,17 +25608,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(878), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14181,86 +25640,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [6] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1527), - [sym_preproc_elif] = STATE(1527), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [76] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(945), + [sym_identifier] = ACTIONS(1019), + [aux_sym_preproc_include_token1] = ACTIONS(764), + [aux_sym_preproc_def_token1] = ACTIONS(764), + [aux_sym_preproc_if_token1] = ACTIONS(764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(764), + [sym_preproc_directive] = ACTIONS(764), + [anon_sym_LPAREN2] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1025), + [anon_sym_extern] = ACTIONS(784), + [anon_sym___attribute__] = ACTIONS(787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(790), + [anon_sym___declspec] = ACTIONS(793), + [anon_sym___cdecl] = ACTIONS(764), + [anon_sym___clrcall] = ACTIONS(764), + [anon_sym___stdcall] = ACTIONS(764), + [anon_sym___fastcall] = ACTIONS(764), + [anon_sym___thiscall] = ACTIONS(764), + [anon_sym___vectorcall] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(784), + [anon_sym_auto] = ACTIONS(784), + [anon_sym_register] = ACTIONS(784), + [anon_sym_inline] = ACTIONS(784), + [anon_sym_thread_local] = ACTIONS(784), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym_signed] = ACTIONS(802), + [anon_sym_unsigned] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [sym_primitive_type] = ACTIONS(805), + [anon_sym_enum] = ACTIONS(808), + [anon_sym_struct] = ACTIONS(811), + [anon_sym_union] = ACTIONS(814), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_sizeof] = ACTIONS(847), + [anon_sym_offsetof] = ACTIONS(850), + [anon_sym__Generic] = ACTIONS(853), + [anon_sym_asm] = ACTIONS(856), + [anon_sym___asm__] = ACTIONS(856), + [sym_number_literal] = ACTIONS(859), + [anon_sym_L_SQUOTE] = ACTIONS(862), + [anon_sym_u_SQUOTE] = ACTIONS(862), + [anon_sym_U_SQUOTE] = ACTIONS(862), + [anon_sym_u8_SQUOTE] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_L_DQUOTE] = ACTIONS(865), + [anon_sym_u_DQUOTE] = ACTIONS(865), + [anon_sym_U_DQUOTE] = ACTIONS(865), + [anon_sym_u8_DQUOTE] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_true] = ACTIONS(868), + [sym_false] = ACTIONS(868), + [anon_sym_NULL] = ACTIONS(871), + [anon_sym_nullptr] = ACTIONS(871), + [sym_comment] = ACTIONS(3), + }, + [77] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(876), + [aux_sym_preproc_def_token1] = ACTIONS(876), + [aux_sym_preproc_if_token1] = ACTIONS(876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(876), + [sym_preproc_directive] = ACTIONS(876), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14268,29 +25854,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym___cdecl] = ACTIONS(876), + [anon_sym___clrcall] = ACTIONS(876), + [anon_sym___stdcall] = ACTIONS(876), + [anon_sym___fastcall] = ACTIONS(876), + [anon_sym___thiscall] = ACTIONS(876), + [anon_sym___vectorcall] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -14299,17 +25888,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14330,86 +25920,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [7] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1528), - [sym_preproc_elif] = STATE(1528), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [78] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1246), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(503), + [sym_ms_declspec_modifier] = STATE(783), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [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__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_if_token2] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14417,29 +25994,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_typedef] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(642), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -14448,17 +26028,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_if] = ACTIONS(644), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14479,86 +26060,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [8] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(1525), - [sym_preproc_elif] = STATE(1525), - [sym_function_definition] = STATE(4), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(4), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [79] = { + [sym_declaration] = STATE(589), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(783), + [sym_ms_declspec_modifier] = STATE(783), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(956), + [sym_comma_expression] = STATE(1749), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(1058), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14566,29 +26111,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -14597,17 +26137,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14628,86 +26157,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [9] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1532), - [sym_preproc_elif] = STATE(1532), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [80] = { + [sym_declaration] = STATE(596), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(783), + [sym_ms_declspec_modifier] = STATE(783), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(981), + [sym_comma_expression] = STATE(1848), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(1058), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14715,29 +26208,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -14746,17 +26234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14777,86 +26254,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [10] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1516), - [sym_preproc_elif] = STATE(1516), - [sym_function_definition] = STATE(14), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [81] = { + [sym_declaration] = STATE(580), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(783), + [sym_ms_declspec_modifier] = STATE(783), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(959), + [sym_comma_expression] = STATE(1821), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(1058), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14864,29 +26305,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -14895,17 +26331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14926,86 +26351,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [11] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1508), - [sym_preproc_elif] = STATE(1508), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), + [82] = { + [sym_declaration] = STATE(611), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(783), + [sym_ms_declspec_modifier] = STATE(783), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(945), + [sym_comma_expression] = STATE(1840), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(1058), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15013,29 +26402,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [83] = { + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(783), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(783), + [sym_attribute_declaration] = STATE(783), + [sym_ms_declspec_modifier] = STATE(783), + [sym_storage_class_specifier] = STATE(783), + [sym_type_qualifier] = STATE(783), + [sym__type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(997), + [sym_comma_expression] = STATE(1831), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym__declaration_specifiers_repeat1] = STATE(783), + [aux_sym_sized_type_specifier_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1070), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), [anon_sym_signed] = ACTIONS(47), [anon_sym_unsigned] = ACTIONS(47), [anon_sym_long] = ACTIONS(47), @@ -15044,17 +26525,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -15075,13128 +26545,15300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [84] = { + [sym_else_clause] = STATE(98), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [aux_sym_preproc_else_token1] = ACTIONS(1072), + [aux_sym_preproc_elif_token1] = ACTIONS(1072), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_thread_local] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_constexpr] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [anon_sym_NULL] = ACTIONS(1072), + [anon_sym_nullptr] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + }, + [85] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [aux_sym_preproc_else_token1] = ACTIONS(1078), + [aux_sym_preproc_elif_token1] = ACTIONS(1078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [86] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [aux_sym_preproc_else_token1] = ACTIONS(1082), + [aux_sym_preproc_elif_token1] = ACTIONS(1082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_thread_local] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_constexpr] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [anon_sym_NULL] = ACTIONS(1082), + [anon_sym_nullptr] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [87] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [aux_sym_preproc_else_token1] = ACTIONS(1086), + [aux_sym_preproc_elif_token1] = ACTIONS(1086), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_thread_local] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_constexpr] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [anon_sym_NULL] = ACTIONS(1086), + [anon_sym_nullptr] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [88] = { + [sym__expression] = STATE(735), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(753), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(753), + [sym_call_expression] = STATE(753), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(753), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(753), + [sym_initializer_list] = STATE(738), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_identifier] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_COLON] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_STAR_EQ] = ACTIONS(1092), + [anon_sym_SLASH_EQ] = ACTIONS(1092), + [anon_sym_PERCENT_EQ] = ACTIONS(1092), + [anon_sym_PLUS_EQ] = ACTIONS(1092), + [anon_sym_DASH_EQ] = ACTIONS(1092), + [anon_sym_LT_LT_EQ] = ACTIONS(1092), + [anon_sym_GT_GT_EQ] = ACTIONS(1092), + [anon_sym_AMP_EQ] = ACTIONS(1092), + [anon_sym_CARET_EQ] = ACTIONS(1092), + [anon_sym_PIPE_EQ] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(1102), + [anon_sym_DASH_GT] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [89] = { + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [aux_sym_preproc_else_token1] = ACTIONS(1110), + [aux_sym_preproc_elif_token1] = ACTIONS(1110), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + }, + [90] = { + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token2] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [aux_sym_preproc_else_token1] = ACTIONS(1114), + [aux_sym_preproc_elif_token1] = ACTIONS(1114), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + }, + [91] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token2] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [aux_sym_preproc_else_token1] = ACTIONS(1118), + [aux_sym_preproc_elif_token1] = ACTIONS(1118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + }, + [92] = { + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [aux_sym_preproc_else_token1] = ACTIONS(1122), + [aux_sym_preproc_elif_token1] = ACTIONS(1122), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + }, + [93] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [aux_sym_preproc_else_token1] = ACTIONS(1126), + [aux_sym_preproc_elif_token1] = ACTIONS(1126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + }, + [94] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [aux_sym_preproc_else_token1] = ACTIONS(1130), + [aux_sym_preproc_elif_token1] = ACTIONS(1130), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [12] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1587), - [sym_preproc_elif] = STATE(1587), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [95] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), }, - [13] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1515), - [sym_preproc_elif] = STATE(1515), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [96] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [aux_sym_preproc_else_token1] = ACTIONS(1078), + [aux_sym_preproc_elif_token1] = ACTIONS(1078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, - [14] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1509), - [sym_preproc_elif] = STATE(1509), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [97] = { + [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_typedef] = ACTIONS(1138), + [anon_sym_extern] = 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_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = 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), }, - [15] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1412), - [sym_preproc_elif] = STATE(1412), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [98] = { + [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_typedef] = ACTIONS(1142), + [anon_sym_extern] = 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_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = 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), + }, + [99] = { + [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_typedef] = ACTIONS(1146), + [anon_sym_extern] = 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_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = 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), }, - [16] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(1415), - [sym_preproc_elif] = STATE(1415), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [100] = { + [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_typedef] = ACTIONS(1150), + [anon_sym_extern] = 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_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = 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), }, - [17] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1418), - [sym_preproc_elif] = STATE(1418), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_case_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [101] = { + [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_typedef] = ACTIONS(1154), + [anon_sym_extern] = 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_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = 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), }, - [18] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1446), - [sym_preproc_elif] = STATE(1446), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [102] = { + [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_typedef] = ACTIONS(1158), + [anon_sym_extern] = 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_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = 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), }, - [19] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(1443), - [sym_preproc_elif] = STATE(1443), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(119), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [103] = { + [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_typedef] = ACTIONS(1162), + [anon_sym_extern] = 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_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = 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), }, - [20] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1076), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(893), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(182), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(188), - [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(193), - [aux_sym_preproc_else_token1] = ACTIONS(191), - [aux_sym_preproc_elif_token1] = ACTIONS(191), - [sym_preproc_directive] = ACTIONS(196), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_typedef] = ACTIONS(214), - [anon_sym_extern] = ACTIONS(217), - [anon_sym___attribute__] = ACTIONS(220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(223), - [anon_sym___declspec] = ACTIONS(226), - [anon_sym___cdecl] = ACTIONS(229), - [anon_sym___clrcall] = ACTIONS(229), - [anon_sym___stdcall] = ACTIONS(229), - [anon_sym___fastcall] = ACTIONS(229), - [anon_sym___thiscall] = ACTIONS(229), - [anon_sym___vectorcall] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_static] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(235), - [anon_sym_register] = ACTIONS(235), - [anon_sym_inline] = ACTIONS(235), - [anon_sym_const] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym___restrict__] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym__Noreturn] = ACTIONS(238), - [anon_sym_signed] = ACTIONS(241), - [anon_sym_unsigned] = ACTIONS(241), - [anon_sym_long] = ACTIONS(241), - [anon_sym_short] = ACTIONS(241), - [sym_primitive_type] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(250), - [anon_sym_union] = ACTIONS(253), - [anon_sym_if] = ACTIONS(256), - [anon_sym_switch] = ACTIONS(259), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(268), - [anon_sym_do] = ACTIONS(271), - [anon_sym_for] = ACTIONS(274), - [anon_sym_return] = ACTIONS(277), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(283), - [anon_sym_goto] = ACTIONS(286), - [anon_sym_DASH_DASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(289), - [anon_sym_sizeof] = ACTIONS(292), - [anon_sym_offsetof] = ACTIONS(295), - [anon_sym__Generic] = ACTIONS(298), - [anon_sym_asm] = ACTIONS(301), - [anon_sym___asm__] = ACTIONS(301), - [sym_number_literal] = ACTIONS(304), - [anon_sym_L_SQUOTE] = ACTIONS(307), - [anon_sym_u_SQUOTE] = ACTIONS(307), - [anon_sym_U_SQUOTE] = ACTIONS(307), - [anon_sym_u8_SQUOTE] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(307), - [anon_sym_L_DQUOTE] = ACTIONS(310), - [anon_sym_u_DQUOTE] = ACTIONS(310), - [anon_sym_U_DQUOTE] = ACTIONS(310), - [anon_sym_u8_DQUOTE] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), + [104] = { + [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_typedef] = ACTIONS(1166), + [anon_sym_extern] = 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_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = 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), }, - [21] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1075), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(670), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(892), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [ts_builtin_sym_end] = ACTIONS(316), - [sym_identifier] = ACTIONS(318), - [aux_sym_preproc_include_token1] = ACTIONS(321), - [aux_sym_preproc_def_token1] = ACTIONS(324), - [aux_sym_preproc_if_token1] = ACTIONS(327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(330), - [sym_preproc_directive] = ACTIONS(333), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(339), - [anon_sym_extern] = ACTIONS(342), - [anon_sym___attribute__] = ACTIONS(220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(223), - [anon_sym___declspec] = ACTIONS(226), - [anon_sym___cdecl] = ACTIONS(229), - [anon_sym___clrcall] = ACTIONS(229), - [anon_sym___stdcall] = ACTIONS(229), - [anon_sym___fastcall] = ACTIONS(229), - [anon_sym___thiscall] = ACTIONS(229), - [anon_sym___vectorcall] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_static] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(235), - [anon_sym_register] = ACTIONS(235), - [anon_sym_inline] = ACTIONS(235), - [anon_sym_const] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym___restrict__] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym__Noreturn] = ACTIONS(238), - [anon_sym_signed] = ACTIONS(241), - [anon_sym_unsigned] = ACTIONS(241), - [anon_sym_long] = ACTIONS(241), - [anon_sym_short] = ACTIONS(241), - [sym_primitive_type] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(250), - [anon_sym_union] = ACTIONS(253), - [anon_sym_if] = ACTIONS(348), - [anon_sym_switch] = ACTIONS(351), - [anon_sym_case] = ACTIONS(354), - [anon_sym_default] = ACTIONS(357), - [anon_sym_while] = ACTIONS(360), - [anon_sym_do] = ACTIONS(363), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(369), - [anon_sym_break] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(375), - [anon_sym_goto] = ACTIONS(378), - [anon_sym_DASH_DASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(289), - [anon_sym_sizeof] = ACTIONS(292), - [anon_sym_offsetof] = ACTIONS(295), - [anon_sym__Generic] = ACTIONS(298), - [anon_sym_asm] = ACTIONS(301), - [anon_sym___asm__] = ACTIONS(301), - [sym_number_literal] = ACTIONS(304), - [anon_sym_L_SQUOTE] = ACTIONS(307), - [anon_sym_u_SQUOTE] = ACTIONS(307), - [anon_sym_U_SQUOTE] = ACTIONS(307), - [anon_sym_u8_SQUOTE] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(307), - [anon_sym_L_DQUOTE] = ACTIONS(310), - [anon_sym_u_DQUOTE] = ACTIONS(310), - [anon_sym_U_DQUOTE] = ACTIONS(310), - [anon_sym_u8_DQUOTE] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), + [105] = { + [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_typedef] = ACTIONS(1170), + [anon_sym_extern] = 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_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = 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), }, - [22] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1080), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(667), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(895), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(381), - [aux_sym_preproc_include_token1] = ACTIONS(383), - [aux_sym_preproc_def_token1] = ACTIONS(385), - [aux_sym_preproc_if_token1] = ACTIONS(387), - [aux_sym_preproc_if_token2] = ACTIONS(389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(391), - [sym_preproc_directive] = ACTIONS(393), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_typedef] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(399), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [106] = { + [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_typedef] = ACTIONS(1174), + [anon_sym_extern] = 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_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = 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), }, - [23] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [107] = { + [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_typedef] = ACTIONS(1178), + [anon_sym_extern] = 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_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = 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), + }, + [108] = { + [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_typedef] = ACTIONS(1182), + [anon_sym_extern] = 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_static] = ACTIONS(1182), + [anon_sym_auto] = ACTIONS(1182), + [anon_sym_register] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1182), + [anon_sym_unsigned] = ACTIONS(1182), + [anon_sym_long] = ACTIONS(1182), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_sizeof] = ACTIONS(1182), + [anon_sym_offsetof] = ACTIONS(1182), + [anon_sym__Generic] = 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), }, - [24] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(469), - [aux_sym_preproc_include_token1] = ACTIONS(472), - [aux_sym_preproc_def_token1] = ACTIONS(475), - [aux_sym_preproc_if_token1] = ACTIONS(478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(481), - [sym_preproc_directive] = ACTIONS(484), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(487), - [anon_sym_typedef] = ACTIONS(490), - [anon_sym_extern] = ACTIONS(493), - [anon_sym___attribute__] = ACTIONS(220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(223), - [anon_sym___declspec] = ACTIONS(226), - [anon_sym___cdecl] = ACTIONS(229), - [anon_sym___clrcall] = ACTIONS(229), - [anon_sym___stdcall] = ACTIONS(229), - [anon_sym___fastcall] = ACTIONS(229), - [anon_sym___thiscall] = ACTIONS(229), - [anon_sym___vectorcall] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_static] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(235), - [anon_sym_register] = ACTIONS(235), - [anon_sym_inline] = ACTIONS(235), - [anon_sym_const] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym___restrict__] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym__Noreturn] = ACTIONS(238), - [anon_sym_signed] = ACTIONS(241), - [anon_sym_unsigned] = ACTIONS(241), - [anon_sym_long] = ACTIONS(241), - [anon_sym_short] = ACTIONS(241), - [sym_primitive_type] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(250), - [anon_sym_union] = ACTIONS(253), - [anon_sym_if] = ACTIONS(499), - [anon_sym_switch] = ACTIONS(502), - [anon_sym_case] = ACTIONS(505), - [anon_sym_default] = ACTIONS(508), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(514), - [anon_sym_for] = ACTIONS(517), - [anon_sym_return] = ACTIONS(520), - [anon_sym_break] = ACTIONS(523), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(289), - [anon_sym_sizeof] = ACTIONS(292), - [anon_sym_offsetof] = ACTIONS(295), - [anon_sym__Generic] = ACTIONS(298), - [anon_sym_asm] = ACTIONS(301), - [anon_sym___asm__] = ACTIONS(301), - [sym_number_literal] = ACTIONS(304), - [anon_sym_L_SQUOTE] = ACTIONS(307), - [anon_sym_u_SQUOTE] = ACTIONS(307), - [anon_sym_U_SQUOTE] = ACTIONS(307), - [anon_sym_u8_SQUOTE] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(307), - [anon_sym_L_DQUOTE] = ACTIONS(310), - [anon_sym_u_DQUOTE] = ACTIONS(310), - [anon_sym_U_DQUOTE] = ACTIONS(310), - [anon_sym_u8_DQUOTE] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), + [109] = { + [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_typedef] = ACTIONS(1186), + [anon_sym_extern] = 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_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = 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), }, - [25] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [110] = { + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [aux_sym_preproc_else_token1] = ACTIONS(1190), + [aux_sym_preproc_elif_token1] = ACTIONS(1190), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = 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_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = 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), }, - [26] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(534), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [111] = { + [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_typedef] = ACTIONS(1194), + [anon_sym_extern] = 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_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = 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), }, - [27] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1080), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(667), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(895), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(381), - [aux_sym_preproc_include_token1] = ACTIONS(383), - [aux_sym_preproc_def_token1] = ACTIONS(385), - [aux_sym_preproc_if_token1] = ACTIONS(387), - [aux_sym_preproc_if_token2] = ACTIONS(536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(391), - [sym_preproc_directive] = ACTIONS(393), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_typedef] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(399), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [112] = { + [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_typedef] = ACTIONS(1198), + [anon_sym_extern] = 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_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = 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), }, - [28] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1080), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(667), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(895), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(538), - [aux_sym_preproc_include_token1] = ACTIONS(541), - [aux_sym_preproc_def_token1] = ACTIONS(544), - [aux_sym_preproc_if_token1] = ACTIONS(547), - [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(550), - [aux_sym_preproc_ifdef_token2] = ACTIONS(550), - [sym_preproc_directive] = ACTIONS(553), - [anon_sym_LPAREN2] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_AMP] = ACTIONS(208), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_typedef] = ACTIONS(559), - [anon_sym_extern] = ACTIONS(562), - [anon_sym___attribute__] = ACTIONS(220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(223), - [anon_sym___declspec] = ACTIONS(226), - [anon_sym___cdecl] = ACTIONS(229), - [anon_sym___clrcall] = ACTIONS(229), - [anon_sym___stdcall] = ACTIONS(229), - [anon_sym___fastcall] = ACTIONS(229), - [anon_sym___thiscall] = ACTIONS(229), - [anon_sym___vectorcall] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_static] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(235), - [anon_sym_register] = ACTIONS(235), - [anon_sym_inline] = ACTIONS(235), - [anon_sym_const] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym___restrict__] = ACTIONS(238), - [anon_sym__Atomic] = ACTIONS(238), - [anon_sym__Noreturn] = ACTIONS(238), - [anon_sym_signed] = ACTIONS(241), - [anon_sym_unsigned] = ACTIONS(241), - [anon_sym_long] = ACTIONS(241), - [anon_sym_short] = ACTIONS(241), - [sym_primitive_type] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(250), - [anon_sym_union] = ACTIONS(253), - [anon_sym_if] = ACTIONS(568), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_case] = ACTIONS(574), - [anon_sym_default] = ACTIONS(577), - [anon_sym_while] = ACTIONS(580), - [anon_sym_do] = ACTIONS(583), - [anon_sym_for] = ACTIONS(586), - [anon_sym_return] = ACTIONS(589), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(289), - [anon_sym_sizeof] = ACTIONS(292), - [anon_sym_offsetof] = ACTIONS(295), - [anon_sym__Generic] = ACTIONS(298), - [anon_sym_asm] = ACTIONS(301), - [anon_sym___asm__] = ACTIONS(301), - [sym_number_literal] = ACTIONS(304), - [anon_sym_L_SQUOTE] = ACTIONS(307), - [anon_sym_u_SQUOTE] = ACTIONS(307), - [anon_sym_U_SQUOTE] = ACTIONS(307), - [anon_sym_u8_SQUOTE] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(307), - [anon_sym_L_DQUOTE] = ACTIONS(310), - [anon_sym_u_DQUOTE] = ACTIONS(310), - [anon_sym_U_DQUOTE] = ACTIONS(310), - [anon_sym_u8_DQUOTE] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [sym_true] = ACTIONS(313), - [sym_false] = ACTIONS(313), - [sym_null] = ACTIONS(313), + [113] = { + [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_typedef] = ACTIONS(1202), + [anon_sym_extern] = 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_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = 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), }, - [29] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [114] = { + [sym_identifier] = ACTIONS(1206), + [aux_sym_preproc_include_token1] = ACTIONS(1206), + [aux_sym_preproc_def_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token1] = ACTIONS(1206), + [aux_sym_preproc_if_token2] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1206), + [aux_sym_preproc_else_token1] = ACTIONS(1206), + [aux_sym_preproc_elif_token1] = ACTIONS(1206), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1206), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1206), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_extern] = 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_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = 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), }, - [30] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(603), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [115] = { + [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_typedef] = ACTIONS(1210), + [anon_sym_extern] = 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_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [116] = { + [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_typedef] = ACTIONS(1214), + [anon_sym_extern] = 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_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = 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), + }, + [117] = { + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token2] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [aux_sym_preproc_else_token1] = ACTIONS(1218), + [aux_sym_preproc_elif_token1] = ACTIONS(1218), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1218), + [sym_preproc_directive] = ACTIONS(1218), + [anon_sym_LPAREN2] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_extern] = 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_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = ACTIONS(1218), + [anon_sym_asm] = ACTIONS(1218), + [anon_sym___asm__] = ACTIONS(1218), + [sym_number_literal] = ACTIONS(1220), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1220), + [anon_sym_u_DQUOTE] = ACTIONS(1220), + [anon_sym_U_DQUOTE] = ACTIONS(1220), + [anon_sym_u8_DQUOTE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [anon_sym_NULL] = ACTIONS(1218), + [anon_sym_nullptr] = ACTIONS(1218), + [sym_comment] = ACTIONS(3), + }, + [118] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token2] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [aux_sym_preproc_else_token1] = ACTIONS(1222), + [aux_sym_preproc_elif_token1] = ACTIONS(1222), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = 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_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = 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), + }, + [119] = { + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token2] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [aux_sym_preproc_else_token1] = ACTIONS(1226), + [aux_sym_preproc_elif_token1] = ACTIONS(1226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_extern] = 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_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = 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), + }, + [120] = { + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token2] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [aux_sym_preproc_else_token1] = ACTIONS(1230), + [aux_sym_preproc_elif_token1] = ACTIONS(1230), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1230), + [sym_preproc_directive] = ACTIONS(1230), + [anon_sym_LPAREN2] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_extern] = 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_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = 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), + }, + [121] = { + [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_typedef] = ACTIONS(1234), + [anon_sym_extern] = 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_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = 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), + }, + [122] = { + [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_typedef] = ACTIONS(1238), + [anon_sym_extern] = 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_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = 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), + }, + [123] = { + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token2] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [aux_sym_preproc_else_token1] = ACTIONS(1242), + [aux_sym_preproc_elif_token1] = ACTIONS(1242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1242), + [sym_preproc_directive] = ACTIONS(1242), + [anon_sym_LPAREN2] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_extern] = 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_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = 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), + }, + [124] = { + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [aux_sym_preproc_else_token1] = ACTIONS(1246), + [aux_sym_preproc_elif_token1] = ACTIONS(1246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = 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_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = 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), + }, + [125] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), }, - [32] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [126] = { + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [aux_sym_preproc_else_token1] = ACTIONS(1250), + [aux_sym_preproc_elif_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), + [sym_preproc_directive] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_extern] = 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_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = 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), }, - [33] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [127] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [aux_sym_preproc_else_token1] = ACTIONS(1254), + [aux_sym_preproc_elif_token1] = ACTIONS(1254), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = 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_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = 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), }, - [34] = { - [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_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(611), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [128] = { + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [aux_sym_preproc_else_token1] = ACTIONS(1258), + [aux_sym_preproc_elif_token1] = ACTIONS(1258), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = 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_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = 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), }, - [35] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1075), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(670), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(892), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [ts_builtin_sym_end] = ACTIONS(613), - [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_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [129] = { + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token2] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [aux_sym_preproc_else_token1] = ACTIONS(1262), + [aux_sym_preproc_elif_token1] = ACTIONS(1262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1262), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(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_typedef] = ACTIONS(1262), + [anon_sym_extern] = 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_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = 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_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = 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), + }, + [130] = { + [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_if_token2] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [aux_sym_preproc_else_token1] = ACTIONS(1266), + [aux_sym_preproc_elif_token1] = ACTIONS(1266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_elifdef_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_typedef] = ACTIONS(1266), + [anon_sym_extern] = 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_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = 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_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = 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), + }, + [131] = { + [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_typedef] = ACTIONS(1270), + [anon_sym_extern] = 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_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = 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_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = 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), + [sym_comment] = ACTIONS(3), + }, + [132] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1274), + [aux_sym_preproc_elif_token1] = ACTIONS(1274), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_elifdef_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_typedef] = ACTIONS(1274), + [anon_sym_extern] = 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_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = 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_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = 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), + }, + [133] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1278), + [aux_sym_preproc_elif_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_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_typedef] = ACTIONS(1278), + [anon_sym_extern] = 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_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = 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_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = 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), }, - [36] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [134] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1282), + [aux_sym_preproc_elif_token1] = ACTIONS(1282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_elifdef_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_typedef] = ACTIONS(1282), + [anon_sym_extern] = 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_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = 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_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = 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), }, - [37] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [135] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1286), + [aux_sym_preproc_elif_token1] = ACTIONS(1286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_elifdef_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_typedef] = ACTIONS(1286), + [anon_sym_extern] = 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_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = 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_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = 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), }, - [38] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [136] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1290), + [aux_sym_preproc_elif_token1] = ACTIONS(1290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_elifdef_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_typedef] = ACTIONS(1290), + [anon_sym_extern] = 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_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = 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_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = 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), }, - [39] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [137] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1294), + [aux_sym_preproc_elif_token1] = ACTIONS(1294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [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_typedef] = ACTIONS(1294), + [anon_sym_extern] = 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_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = 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), }, - [40] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [138] = { + [sym_else_clause] = STATE(175), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [aux_sym_preproc_else_token1] = ACTIONS(1072), + [aux_sym_preproc_elif_token1] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_thread_local] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_constexpr] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [anon_sym_NULL] = ACTIONS(1072), + [anon_sym_nullptr] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [aux_sym_preproc_else_token1] = ACTIONS(1300), + [aux_sym_preproc_elif_token1] = ACTIONS(1300), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [140] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [aux_sym_preproc_else_token1] = ACTIONS(1304), + [aux_sym_preproc_elif_token1] = ACTIONS(1304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [aux_sym_preproc_else_token1] = ACTIONS(1308), + [aux_sym_preproc_elif_token1] = ACTIONS(1308), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [aux_sym_preproc_else_token1] = ACTIONS(1312), + [aux_sym_preproc_elif_token1] = ACTIONS(1312), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [aux_sym_preproc_else_token1] = ACTIONS(1316), + [aux_sym_preproc_elif_token1] = ACTIONS(1316), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [145] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [aux_sym_preproc_else_token1] = ACTIONS(1324), + [aux_sym_preproc_elif_token1] = ACTIONS(1324), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [aux_sym_preproc_else_token1] = ACTIONS(1328), + [aux_sym_preproc_elif_token1] = ACTIONS(1328), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [aux_sym_preproc_else_token1] = ACTIONS(1332), + [aux_sym_preproc_elif_token1] = ACTIONS(1332), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [41] = { - [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_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [148] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token2] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [aux_sym_preproc_else_token1] = ACTIONS(1222), + [aux_sym_preproc_elif_token1] = ACTIONS(1222), + [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_typedef] = ACTIONS(1222), + [anon_sym_extern] = 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_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = 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), }, - [42] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1072), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_ms_call_modifier] = STATE(673), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(894), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(425), - [aux_sym_preproc_include_token1] = ACTIONS(427), - [aux_sym_preproc_def_token1] = ACTIONS(429), - [aux_sym_preproc_if_token1] = ACTIONS(431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(433), - [sym_preproc_directive] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(441), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [149] = { + [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), + [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_typedef] = ACTIONS(1198), + [anon_sym_extern] = 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_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = 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), }, - [43] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1081), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(629), - [aux_sym_preproc_include_token1] = ACTIONS(631), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [aux_sym_preproc_if_token1] = ACTIONS(631), - [aux_sym_preproc_if_token2] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(631), - [aux_sym_preproc_else_token1] = ACTIONS(631), - [aux_sym_preproc_elif_token1] = ACTIONS(631), - [sym_preproc_directive] = ACTIONS(631), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(631), - [anon_sym___clrcall] = ACTIONS(631), - [anon_sym___stdcall] = ACTIONS(631), - [anon_sym___fastcall] = ACTIONS(631), - [anon_sym___thiscall] = ACTIONS(631), - [anon_sym___vectorcall] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_else] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [150] = { + [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), + [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_typedef] = ACTIONS(1150), + [anon_sym_extern] = 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_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = 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), }, - [44] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1081), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_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(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(43), - [sym_identifier] = ACTIONS(629), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_if_token2] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [aux_sym_preproc_else_token1] = ACTIONS(633), - [aux_sym_preproc_elif_token1] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [151] = { + [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), + [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_typedef] = ACTIONS(1146), + [anon_sym_extern] = 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_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = 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), }, - [45] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1081), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(635), - [aux_sym_preproc_include_token1] = ACTIONS(638), - [aux_sym_preproc_def_token1] = ACTIONS(638), - [aux_sym_preproc_if_token1] = ACTIONS(638), - [aux_sym_preproc_if_token2] = ACTIONS(638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(638), - [aux_sym_preproc_else_token1] = ACTIONS(638), - [aux_sym_preproc_elif_token1] = ACTIONS(638), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_LPAREN2] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_typedef] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(658), - [anon_sym___attribute__] = ACTIONS(661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(664), - [anon_sym___declspec] = ACTIONS(667), - [anon_sym___cdecl] = ACTIONS(638), - [anon_sym___clrcall] = ACTIONS(638), - [anon_sym___stdcall] = ACTIONS(638), - [anon_sym___fastcall] = ACTIONS(638), - [anon_sym___thiscall] = ACTIONS(638), - [anon_sym___vectorcall] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_static] = ACTIONS(658), - [anon_sym_auto] = ACTIONS(658), - [anon_sym_register] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(658), - [anon_sym_const] = ACTIONS(673), - [anon_sym_volatile] = ACTIONS(673), - [anon_sym_restrict] = ACTIONS(673), - [anon_sym___restrict__] = ACTIONS(673), - [anon_sym__Atomic] = ACTIONS(673), - [anon_sym__Noreturn] = ACTIONS(673), - [anon_sym_signed] = ACTIONS(676), - [anon_sym_unsigned] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [sym_primitive_type] = ACTIONS(679), - [anon_sym_enum] = ACTIONS(682), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_union] = ACTIONS(688), - [anon_sym_if] = ACTIONS(691), - [anon_sym_else] = ACTIONS(638), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_case] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_while] = ACTIONS(697), - [anon_sym_do] = ACTIONS(700), - [anon_sym_for] = ACTIONS(703), - [anon_sym_return] = ACTIONS(706), - [anon_sym_break] = ACTIONS(709), - [anon_sym_continue] = ACTIONS(712), - [anon_sym_goto] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(721), - [anon_sym_offsetof] = ACTIONS(724), - [anon_sym__Generic] = ACTIONS(727), - [anon_sym_asm] = ACTIONS(730), - [anon_sym___asm__] = ACTIONS(730), - [sym_number_literal] = ACTIONS(733), - [anon_sym_L_SQUOTE] = ACTIONS(736), - [anon_sym_u_SQUOTE] = ACTIONS(736), - [anon_sym_U_SQUOTE] = ACTIONS(736), - [anon_sym_u8_SQUOTE] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(736), - [anon_sym_L_DQUOTE] = ACTIONS(739), - [anon_sym_u_DQUOTE] = ACTIONS(739), - [anon_sym_U_DQUOTE] = ACTIONS(739), - [anon_sym_u8_DQUOTE] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(739), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_null] = ACTIONS(742), + [152] = { + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [anon_sym_COMMA] = ACTIONS(1176), + [anon_sym_RPAREN] = ACTIONS(1176), + [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_typedef] = ACTIONS(1174), + [anon_sym_extern] = 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_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = 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), }, - [46] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1081), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(629), - [aux_sym_preproc_include_token1] = ACTIONS(745), - [aux_sym_preproc_def_token1] = ACTIONS(745), - [aux_sym_preproc_if_token1] = ACTIONS(745), - [aux_sym_preproc_if_token2] = ACTIONS(745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(745), - [aux_sym_preproc_else_token1] = ACTIONS(745), - [aux_sym_preproc_elif_token1] = ACTIONS(745), - [sym_preproc_directive] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(745), - [anon_sym___clrcall] = ACTIONS(745), - [anon_sym___stdcall] = ACTIONS(745), - [anon_sym___fastcall] = ACTIONS(745), - [anon_sym___thiscall] = ACTIONS(745), - [anon_sym___vectorcall] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_else] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [153] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [aux_sym_preproc_else_token1] = ACTIONS(1126), + [aux_sym_preproc_elif_token1] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + }, + [154] = { + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [aux_sym_preproc_else_token1] = ACTIONS(1110), + [aux_sym_preproc_elif_token1] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1081), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(629), - [aux_sym_preproc_include_token1] = ACTIONS(747), - [aux_sym_preproc_def_token1] = ACTIONS(747), - [aux_sym_preproc_if_token1] = ACTIONS(747), - [aux_sym_preproc_if_token2] = ACTIONS(747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(747), - [aux_sym_preproc_else_token1] = ACTIONS(747), - [aux_sym_preproc_elif_token1] = ACTIONS(747), - [sym_preproc_directive] = ACTIONS(747), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_typedef] = ACTIONS(117), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(123), - [anon_sym_else] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [155] = { + [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), + [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_typedef] = ACTIONS(1162), + [anon_sym_extern] = 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_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = 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), }, - [48] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1073), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(749), - [aux_sym_preproc_include_token1] = ACTIONS(631), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [aux_sym_preproc_if_token1] = ACTIONS(631), - [aux_sym_preproc_if_token2] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(631), - [sym_preproc_directive] = ACTIONS(631), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_typedef] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(631), - [anon_sym___clrcall] = ACTIONS(631), - [anon_sym___stdcall] = ACTIONS(631), - [anon_sym___fastcall] = ACTIONS(631), - [anon_sym___thiscall] = ACTIONS(631), - [anon_sym___vectorcall] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(403), - [anon_sym_else] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [156] = { + [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), + [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_typedef] = ACTIONS(1166), + [anon_sym_extern] = 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_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = 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), }, - [49] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(54), - [ts_builtin_sym_end] = ACTIONS(751), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(747), - [aux_sym_preproc_def_token1] = ACTIONS(747), - [aux_sym_preproc_if_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(747), - [sym_preproc_directive] = ACTIONS(747), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [157] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [aux_sym_preproc_else_token1] = ACTIONS(1082), + [aux_sym_preproc_elif_token1] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_thread_local] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_constexpr] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [anon_sym_NULL] = ACTIONS(1082), + [anon_sym_nullptr] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [158] = { + [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), + [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_typedef] = ACTIONS(1174), + [anon_sym_extern] = 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_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = 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), + }, + [159] = { + [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_typedef] = ACTIONS(1158), + [anon_sym_extern] = 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_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = 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), + }, + [160] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [aux_sym_preproc_else_token1] = ACTIONS(1086), + [aux_sym_preproc_elif_token1] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_thread_local] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_constexpr] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [anon_sym_NULL] = ACTIONS(1086), + [anon_sym_nullptr] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [161] = { + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token2] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [aux_sym_preproc_else_token1] = ACTIONS(1114), + [aux_sym_preproc_elif_token1] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + }, + [162] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token2] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [aux_sym_preproc_else_token1] = ACTIONS(1118), + [aux_sym_preproc_elif_token1] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + }, + [163] = { + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token2] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [aux_sym_preproc_else_token1] = ACTIONS(1122), + [aux_sym_preproc_elif_token1] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token2] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [aux_sym_preproc_else_token1] = ACTIONS(1130), + [aux_sym_preproc_elif_token1] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1068), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(755), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [165] = { + [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), + [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_typedef] = ACTIONS(1178), + [anon_sym_extern] = 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_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = 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), }, - [51] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1068), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(755), - [aux_sym_preproc_include_token1] = ACTIONS(745), - [aux_sym_preproc_def_token1] = ACTIONS(745), - [aux_sym_preproc_if_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(745), - [sym_preproc_directive] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(745), - [anon_sym___clrcall] = ACTIONS(745), - [anon_sym___stdcall] = ACTIONS(745), - [anon_sym___fastcall] = ACTIONS(745), - [anon_sym___thiscall] = ACTIONS(745), - [anon_sym___vectorcall] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [166] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [aux_sym_preproc_else_token1] = ACTIONS(1078), + [aux_sym_preproc_elif_token1] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1073), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(749), - [aux_sym_preproc_include_token1] = ACTIONS(745), - [aux_sym_preproc_def_token1] = ACTIONS(745), - [aux_sym_preproc_if_token1] = ACTIONS(745), - [aux_sym_preproc_if_token2] = ACTIONS(745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(745), - [sym_preproc_directive] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_typedef] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(745), - [anon_sym___clrcall] = ACTIONS(745), - [anon_sym___stdcall] = ACTIONS(745), - [anon_sym___fastcall] = ACTIONS(745), - [anon_sym___thiscall] = ACTIONS(745), - [anon_sym___vectorcall] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(403), - [anon_sym_else] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [167] = { + [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), + [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_typedef] = ACTIONS(1182), + [anon_sym_extern] = 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_static] = ACTIONS(1182), + [anon_sym_auto] = ACTIONS(1182), + [anon_sym_register] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1182), + [anon_sym_unsigned] = ACTIONS(1182), + [anon_sym_long] = ACTIONS(1182), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_sizeof] = ACTIONS(1182), + [anon_sym_offsetof] = ACTIONS(1182), + [anon_sym__Generic] = 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), }, - [53] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1073), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(761), - [aux_sym_preproc_include_token1] = ACTIONS(638), - [aux_sym_preproc_def_token1] = ACTIONS(638), - [aux_sym_preproc_if_token1] = ACTIONS(638), - [aux_sym_preproc_if_token2] = ACTIONS(638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(638), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_LPAREN2] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_typedef] = ACTIONS(767), - [anon_sym_extern] = ACTIONS(658), - [anon_sym___attribute__] = ACTIONS(661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(664), - [anon_sym___declspec] = ACTIONS(667), - [anon_sym___cdecl] = ACTIONS(638), - [anon_sym___clrcall] = ACTIONS(638), - [anon_sym___stdcall] = ACTIONS(638), - [anon_sym___fastcall] = ACTIONS(638), - [anon_sym___thiscall] = ACTIONS(638), - [anon_sym___vectorcall] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_static] = ACTIONS(658), - [anon_sym_auto] = ACTIONS(658), - [anon_sym_register] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(658), - [anon_sym_const] = ACTIONS(673), - [anon_sym_volatile] = ACTIONS(673), - [anon_sym_restrict] = ACTIONS(673), - [anon_sym___restrict__] = ACTIONS(673), - [anon_sym__Atomic] = ACTIONS(673), - [anon_sym__Noreturn] = ACTIONS(673), - [anon_sym_signed] = ACTIONS(676), - [anon_sym_unsigned] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [sym_primitive_type] = ACTIONS(679), - [anon_sym_enum] = ACTIONS(682), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_union] = ACTIONS(688), - [anon_sym_if] = ACTIONS(773), - [anon_sym_else] = ACTIONS(638), - [anon_sym_switch] = ACTIONS(776), - [anon_sym_case] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(782), - [anon_sym_for] = ACTIONS(785), - [anon_sym_return] = ACTIONS(788), - [anon_sym_break] = ACTIONS(791), - [anon_sym_continue] = ACTIONS(794), - [anon_sym_goto] = ACTIONS(797), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(721), - [anon_sym_offsetof] = ACTIONS(724), - [anon_sym__Generic] = ACTIONS(727), - [anon_sym_asm] = ACTIONS(730), - [anon_sym___asm__] = ACTIONS(730), - [sym_number_literal] = ACTIONS(733), - [anon_sym_L_SQUOTE] = ACTIONS(736), - [anon_sym_u_SQUOTE] = ACTIONS(736), - [anon_sym_U_SQUOTE] = ACTIONS(736), - [anon_sym_u8_SQUOTE] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(736), - [anon_sym_L_DQUOTE] = ACTIONS(739), - [anon_sym_u_DQUOTE] = ACTIONS(739), - [anon_sym_U_DQUOTE] = ACTIONS(739), - [anon_sym_u8_DQUOTE] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(739), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_null] = ACTIONS(742), + [168] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [aux_sym_preproc_else_token1] = ACTIONS(1078), + [aux_sym_preproc_elif_token1] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(759), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(745), - [aux_sym_preproc_def_token1] = ACTIONS(745), - [aux_sym_preproc_if_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(745), - [sym_preproc_directive] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(745), - [anon_sym___clrcall] = ACTIONS(745), - [anon_sym___stdcall] = ACTIONS(745), - [anon_sym___fastcall] = ACTIONS(745), - [anon_sym___thiscall] = ACTIONS(745), - [anon_sym___vectorcall] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [169] = { + [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), + [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_typedef] = ACTIONS(1186), + [anon_sym_extern] = 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_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = 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), }, - [55] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(800), - [sym_identifier] = ACTIONS(802), - [aux_sym_preproc_include_token1] = ACTIONS(638), - [aux_sym_preproc_def_token1] = ACTIONS(638), - [aux_sym_preproc_if_token1] = ACTIONS(638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(638), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_LPAREN2] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_typedef] = ACTIONS(808), - [anon_sym_extern] = ACTIONS(658), - [anon_sym___attribute__] = ACTIONS(661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(664), - [anon_sym___declspec] = ACTIONS(667), - [anon_sym___cdecl] = ACTIONS(638), - [anon_sym___clrcall] = ACTIONS(638), - [anon_sym___stdcall] = ACTIONS(638), - [anon_sym___fastcall] = ACTIONS(638), - [anon_sym___thiscall] = ACTIONS(638), - [anon_sym___vectorcall] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_static] = ACTIONS(658), - [anon_sym_auto] = ACTIONS(658), - [anon_sym_register] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(658), - [anon_sym_const] = ACTIONS(673), - [anon_sym_volatile] = ACTIONS(673), - [anon_sym_restrict] = ACTIONS(673), - [anon_sym___restrict__] = ACTIONS(673), - [anon_sym__Atomic] = ACTIONS(673), - [anon_sym__Noreturn] = ACTIONS(673), - [anon_sym_signed] = ACTIONS(676), - [anon_sym_unsigned] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [sym_primitive_type] = ACTIONS(679), - [anon_sym_enum] = ACTIONS(682), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_union] = ACTIONS(688), - [anon_sym_if] = ACTIONS(814), - [anon_sym_else] = ACTIONS(638), - [anon_sym_switch] = ACTIONS(817), - [anon_sym_case] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(823), - [anon_sym_for] = ACTIONS(826), - [anon_sym_return] = ACTIONS(829), - [anon_sym_break] = ACTIONS(832), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(721), - [anon_sym_offsetof] = ACTIONS(724), - [anon_sym__Generic] = ACTIONS(727), - [anon_sym_asm] = ACTIONS(730), - [anon_sym___asm__] = ACTIONS(730), - [sym_number_literal] = ACTIONS(733), - [anon_sym_L_SQUOTE] = ACTIONS(736), - [anon_sym_u_SQUOTE] = ACTIONS(736), - [anon_sym_U_SQUOTE] = ACTIONS(736), - [anon_sym_u8_SQUOTE] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(736), - [anon_sym_L_DQUOTE] = ACTIONS(739), - [anon_sym_u_DQUOTE] = ACTIONS(739), - [anon_sym_U_DQUOTE] = ACTIONS(739), - [anon_sym_u8_DQUOTE] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(739), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_null] = ACTIONS(742), + [170] = { + [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), + [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_typedef] = ACTIONS(1190), + [anon_sym_extern] = 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_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = 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), }, - [56] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(841), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(631), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [aux_sym_preproc_if_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(631), - [sym_preproc_directive] = ACTIONS(631), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(631), - [anon_sym___clrcall] = ACTIONS(631), - [anon_sym___stdcall] = ACTIONS(631), - [anon_sym___fastcall] = ACTIONS(631), - [anon_sym___thiscall] = ACTIONS(631), - [anon_sym___vectorcall] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [171] = { + [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), + [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_typedef] = ACTIONS(1158), + [anon_sym_extern] = 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_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = 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), + }, + [172] = { + [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), + [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_typedef] = ACTIONS(1194), + [anon_sym_extern] = 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_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = 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), + }, + [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_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), + [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_typedef] = ACTIONS(1138), + [anon_sym_extern] = 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_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = 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), }, - [57] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1073), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(749), - [aux_sym_preproc_include_token1] = ACTIONS(747), - [aux_sym_preproc_def_token1] = ACTIONS(747), - [aux_sym_preproc_if_token1] = ACTIONS(747), - [aux_sym_preproc_if_token2] = ACTIONS(747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(747), - [sym_preproc_directive] = ACTIONS(747), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_typedef] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(403), - [anon_sym_else] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [174] = { + [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), + [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_typedef] = ACTIONS(1154), + [anon_sym_extern] = 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_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = 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), }, - [58] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1073), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(749), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_if_token2] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_typedef] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(403), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [175] = { + [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), + [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_typedef] = ACTIONS(1142), + [anon_sym_extern] = 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_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = 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), }, - [59] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1068), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(843), - [aux_sym_preproc_include_token1] = ACTIONS(638), - [aux_sym_preproc_def_token1] = ACTIONS(638), - [aux_sym_preproc_if_token1] = ACTIONS(638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(638), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_LPAREN2] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_typedef] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(658), - [anon_sym___attribute__] = ACTIONS(661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(664), - [anon_sym___declspec] = ACTIONS(667), - [anon_sym___cdecl] = ACTIONS(638), - [anon_sym___clrcall] = ACTIONS(638), - [anon_sym___stdcall] = ACTIONS(638), - [anon_sym___fastcall] = ACTIONS(638), - [anon_sym___thiscall] = ACTIONS(638), - [anon_sym___vectorcall] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_static] = ACTIONS(658), - [anon_sym_auto] = ACTIONS(658), - [anon_sym_register] = ACTIONS(658), - [anon_sym_inline] = ACTIONS(658), - [anon_sym_const] = ACTIONS(673), - [anon_sym_volatile] = ACTIONS(673), - [anon_sym_restrict] = ACTIONS(673), - [anon_sym___restrict__] = ACTIONS(673), - [anon_sym__Atomic] = ACTIONS(673), - [anon_sym__Noreturn] = ACTIONS(673), - [anon_sym_signed] = ACTIONS(676), - [anon_sym_unsigned] = ACTIONS(676), - [anon_sym_long] = ACTIONS(676), - [anon_sym_short] = ACTIONS(676), - [sym_primitive_type] = ACTIONS(679), - [anon_sym_enum] = ACTIONS(682), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_union] = ACTIONS(688), - [anon_sym_if] = ACTIONS(855), - [anon_sym_else] = ACTIONS(638), - [anon_sym_switch] = ACTIONS(858), - [anon_sym_case] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(864), - [anon_sym_for] = ACTIONS(867), - [anon_sym_return] = ACTIONS(870), - [anon_sym_break] = ACTIONS(873), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_goto] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(718), - [anon_sym_PLUS_PLUS] = ACTIONS(718), - [anon_sym_sizeof] = ACTIONS(721), - [anon_sym_offsetof] = ACTIONS(724), - [anon_sym__Generic] = ACTIONS(727), - [anon_sym_asm] = ACTIONS(730), - [anon_sym___asm__] = ACTIONS(730), - [sym_number_literal] = ACTIONS(733), - [anon_sym_L_SQUOTE] = ACTIONS(736), - [anon_sym_u_SQUOTE] = ACTIONS(736), - [anon_sym_U_SQUOTE] = ACTIONS(736), - [anon_sym_u8_SQUOTE] = ACTIONS(736), - [anon_sym_SQUOTE] = ACTIONS(736), - [anon_sym_L_DQUOTE] = ACTIONS(739), - [anon_sym_u_DQUOTE] = ACTIONS(739), - [anon_sym_U_DQUOTE] = ACTIONS(739), - [anon_sym_u8_DQUOTE] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(739), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_null] = ACTIONS(742), + [176] = { + [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), + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), }, - [60] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1068), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [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__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(755), - [aux_sym_preproc_include_token1] = ACTIONS(631), - [aux_sym_preproc_def_token1] = ACTIONS(631), - [aux_sym_preproc_if_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(631), - [aux_sym_preproc_ifdef_token2] = ACTIONS(631), - [sym_preproc_directive] = ACTIONS(631), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(631), - [anon_sym___clrcall] = ACTIONS(631), - [anon_sym___stdcall] = ACTIONS(631), - [anon_sym___fastcall] = ACTIONS(631), - [anon_sym___thiscall] = ACTIONS(631), - [anon_sym___vectorcall] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(841), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [177] = { + [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), + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), }, - [61] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1068), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(755), - [aux_sym_preproc_include_token1] = ACTIONS(747), - [aux_sym_preproc_def_token1] = ACTIONS(747), - [aux_sym_preproc_if_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(747), - [sym_preproc_directive] = ACTIONS(747), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_typedef] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [178] = { + [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), + [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_typedef] = ACTIONS(1202), + [anon_sym_extern] = 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_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = 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), }, - [62] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(687), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [aux_sym_case_statement_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(757), - [sym_identifier] = ACTIONS(753), - [aux_sym_preproc_include_token1] = ACTIONS(633), - [aux_sym_preproc_def_token1] = ACTIONS(633), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(633), - [anon_sym___clrcall] = ACTIONS(633), - [anon_sym___stdcall] = ACTIONS(633), - [anon_sym___fastcall] = ACTIONS(633), - [anon_sym___thiscall] = ACTIONS(633), - [anon_sym___vectorcall] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(633), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [179] = { + [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), + [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_typedef] = ACTIONS(1206), + [anon_sym_extern] = 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_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = 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), }, - [63] = { - [sym_declaration] = STATE(488), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(687), - [sym_ms_declspec_modifier] = STATE(687), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(794), - [sym_comma_expression] = STATE(1591), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(884), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(886), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [180] = { + [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), + [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_typedef] = ACTIONS(1210), + [anon_sym_extern] = 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_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(474), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(687), - [sym_ms_declspec_modifier] = STATE(687), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(811), - [sym_comma_expression] = STATE(1609), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(888), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(886), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1214), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1214), + [anon_sym_extern] = 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_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = 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), }, - [65] = { - [sym_declaration] = STATE(487), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(687), - [sym_ms_declspec_modifier] = STATE(687), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(818), - [sym_comma_expression] = STATE(1462), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(890), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(886), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [182] = { + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token1] = ACTIONS(1218), + [aux_sym_preproc_if_token2] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), + [aux_sym_preproc_else_token1] = ACTIONS(1218), + [aux_sym_preproc_elif_token1] = ACTIONS(1218), + [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_typedef] = ACTIONS(1218), + [anon_sym_extern] = 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_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = 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), }, - [66] = { - [sym_declaration] = STATE(456), - [sym__declaration_modifiers] = STATE(687), - [sym__declaration_specifiers] = STATE(1067), - [sym_attribute_specifier] = STATE(687), - [sym_attribute_declaration] = STATE(687), - [sym_ms_declspec_modifier] = STATE(687), - [sym_storage_class_specifier] = STATE(687), - [sym_type_qualifier] = STATE(687), - [sym__type_specifier] = STATE(746), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(789), - [sym_comma_expression] = STATE(1601), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(687), - [aux_sym_sized_type_specifier_repeat1] = STATE(800), - [sym_identifier] = ACTIONS(882), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(892), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(886), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [183] = { + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token2] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [aux_sym_preproc_else_token1] = ACTIONS(1246), + [aux_sym_preproc_elif_token1] = ACTIONS(1246), + [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_typedef] = ACTIONS(1246), + [anon_sym_extern] = 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_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = 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), }, - [67] = { - [sym__expression] = STATE(634), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(645), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(645), - [sym_call_expression] = STATE(645), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(645), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(645), - [sym_initializer_list] = STATE(638), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_identifier] = ACTIONS(894), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(896), - [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_STAR_EQ] = ACTIONS(896), - [anon_sym_SLASH_EQ] = ACTIONS(896), - [anon_sym_PERCENT_EQ] = ACTIONS(896), - [anon_sym_PLUS_EQ] = ACTIONS(896), - [anon_sym_DASH_EQ] = ACTIONS(896), - [anon_sym_LT_LT_EQ] = ACTIONS(896), - [anon_sym_GT_GT_EQ] = ACTIONS(896), - [anon_sym_AMP_EQ] = ACTIONS(896), - [anon_sym_CARET_EQ] = ACTIONS(896), - [anon_sym_PIPE_EQ] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(910), - [anon_sym_sizeof] = ACTIONS(912), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DASH_GT] = ACTIONS(896), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [184] = { + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token1] = ACTIONS(1242), + [aux_sym_preproc_if_token2] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), + [aux_sym_preproc_else_token1] = ACTIONS(1242), + [aux_sym_preproc_elif_token1] = ACTIONS(1242), + [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_typedef] = ACTIONS(1242), + [anon_sym_extern] = 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_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = 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), }, - [68] = { - [sym_else_clause] = STATE(109), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [aux_sym_preproc_else_token1] = ACTIONS(914), - [aux_sym_preproc_elif_token1] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [anon_sym_asm] = ACTIONS(914), - [anon_sym___asm__] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [185] = { + [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), + [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_typedef] = ACTIONS(1238), + [anon_sym_extern] = 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_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = 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), }, - [69] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [aux_sym_preproc_else_token1] = ACTIONS(920), - [aux_sym_preproc_elif_token1] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [anon_sym_asm] = ACTIONS(920), - [anon_sym___asm__] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), + [186] = { + [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), + [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_typedef] = ACTIONS(1170), + [anon_sym_extern] = 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_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = 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), }, - [70] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [aux_sym_preproc_else_token1] = ACTIONS(924), - [aux_sym_preproc_elif_token1] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [187] = { + [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), + [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_typedef] = ACTIONS(1234), + [anon_sym_extern] = 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_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = 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), }, - [71] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_if_token2] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [aux_sym_preproc_else_token1] = ACTIONS(928), - [aux_sym_preproc_elif_token1] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [anon_sym_asm] = ACTIONS(928), - [anon_sym___asm__] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), + [188] = { + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token1] = ACTIONS(1230), + [aux_sym_preproc_if_token2] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1230), + [aux_sym_preproc_else_token1] = ACTIONS(1230), + [aux_sym_preproc_elif_token1] = ACTIONS(1230), + [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_typedef] = ACTIONS(1230), + [anon_sym_extern] = 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_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = 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), }, - [72] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_if_token2] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [aux_sym_preproc_else_token1] = ACTIONS(932), - [aux_sym_preproc_elif_token1] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), + [189] = { + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [aux_sym_preproc_if_token2] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [aux_sym_preproc_else_token1] = ACTIONS(1226), + [aux_sym_preproc_elif_token1] = ACTIONS(1226), + [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_typedef] = ACTIONS(1226), + [anon_sym_extern] = 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_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = 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), }, - [73] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_if_token2] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [aux_sym_preproc_else_token1] = ACTIONS(936), - [aux_sym_preproc_elif_token1] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [190] = { + [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_if_token2] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [aux_sym_preproc_else_token1] = ACTIONS(1266), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1266), + [anon_sym_extern] = 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_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = 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_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = 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), }, - [74] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_if_token2] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [aux_sym_preproc_else_token1] = ACTIONS(932), - [aux_sym_preproc_elif_token1] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), + [191] = { + [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), + [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_typedef] = ACTIONS(1270), + [anon_sym_extern] = 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_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = 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_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = 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), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [aux_sym_preproc_else_token1] = ACTIONS(940), - [aux_sym_preproc_elif_token1] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [anon_sym_asm] = ACTIONS(940), - [anon_sym___asm__] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [192] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1282), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1282), + [anon_sym_extern] = 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_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = 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_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = 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), }, - [76] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [aux_sym_preproc_else_token1] = ACTIONS(944), - [aux_sym_preproc_elif_token1] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [anon_sym_asm] = ACTIONS(944), - [anon_sym___asm__] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [193] = { + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [aux_sym_preproc_else_token1] = ACTIONS(1258), + [aux_sym_preproc_elif_token1] = ACTIONS(1258), + [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_typedef] = ACTIONS(1258), + [anon_sym_extern] = 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_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = 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), }, - [77] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [aux_sym_preproc_else_token1] = ACTIONS(948), - [aux_sym_preproc_elif_token1] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [194] = { + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token2] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1262), + [aux_sym_preproc_else_token1] = ACTIONS(1262), + [aux_sym_preproc_elif_token1] = ACTIONS(1262), + [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_typedef] = ACTIONS(1262), + [anon_sym_extern] = 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_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = 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_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = 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), }, - [78] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [aux_sym_preproc_else_token1] = ACTIONS(952), - [aux_sym_preproc_elif_token1] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [anon_sym_asm] = ACTIONS(952), - [anon_sym___asm__] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [195] = { + [sym_else_clause] = STATE(241), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_thread_local] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_constexpr] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [anon_sym_NULL] = ACTIONS(1072), + [anon_sym_nullptr] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [aux_sym_preproc_else_token1] = ACTIONS(956), - [aux_sym_preproc_elif_token1] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [anon_sym_asm] = ACTIONS(956), - [anon_sym___asm__] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), + [196] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [aux_sym_preproc_else_token1] = ACTIONS(1324), + [aux_sym_preproc_elif_token1] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [aux_sym_preproc_else_token1] = ACTIONS(960), - [aux_sym_preproc_elif_token1] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [anon_sym_asm] = ACTIONS(960), - [anon_sym___asm__] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [197] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1294), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1294), + [anon_sym_extern] = 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_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = 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), }, - [81] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_if_token2] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [aux_sym_preproc_else_token1] = ACTIONS(964), - [aux_sym_preproc_elif_token1] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [anon_sym_asm] = ACTIONS(964), - [anon_sym___asm__] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [198] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [aux_sym_preproc_else_token1] = ACTIONS(1300), + [aux_sym_preproc_elif_token1] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [aux_sym_preproc_else_token1] = ACTIONS(968), - [aux_sym_preproc_elif_token1] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym___restrict__] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym__Noreturn] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_offsetof] = ACTIONS(968), - [anon_sym__Generic] = ACTIONS(968), - [anon_sym_asm] = ACTIONS(968), - [anon_sym___asm__] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [199] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [aux_sym_preproc_else_token1] = ACTIONS(1304), + [aux_sym_preproc_elif_token1] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [83] = { - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_if_token2] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [aux_sym_preproc_else_token1] = ACTIONS(972), - [aux_sym_preproc_elif_token1] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym___restrict__] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym__Noreturn] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [anon_sym_offsetof] = ACTIONS(972), - [anon_sym__Generic] = ACTIONS(972), - [anon_sym_asm] = ACTIONS(972), - [anon_sym___asm__] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), + [200] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1274), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1274), + [anon_sym_extern] = 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_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = 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_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = 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), }, - [84] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_if_token2] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [aux_sym_preproc_else_token1] = ACTIONS(976), - [aux_sym_preproc_elif_token1] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym___restrict__] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym__Noreturn] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [anon_sym_offsetof] = ACTIONS(976), - [anon_sym__Generic] = ACTIONS(976), - [anon_sym_asm] = ACTIONS(976), - [anon_sym___asm__] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), + [201] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [aux_sym_preproc_else_token1] = ACTIONS(1308), + [aux_sym_preproc_elif_token1] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [202] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1286), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1286), + [anon_sym_extern] = 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_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = 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_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = 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), + }, + [203] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [aux_sym_preproc_else_token1] = ACTIONS(1332), + [aux_sym_preproc_elif_token1] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [85] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_if_token2] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [aux_sym_preproc_else_token1] = ACTIONS(980), - [aux_sym_preproc_elif_token1] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym___restrict__] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym__Noreturn] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_offsetof] = ACTIONS(980), - [anon_sym__Generic] = ACTIONS(980), - [anon_sym_asm] = ACTIONS(980), - [anon_sym___asm__] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), + [204] = { + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token1] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), + [aux_sym_preproc_else_token1] = ACTIONS(1250), + [aux_sym_preproc_elif_token1] = ACTIONS(1250), + [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_typedef] = ACTIONS(1250), + [anon_sym_extern] = 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_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = 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), }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym___restrict__] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym__Noreturn] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_offsetof] = ACTIONS(968), - [anon_sym__Generic] = ACTIONS(968), - [anon_sym_asm] = ACTIONS(968), - [anon_sym___asm__] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [205] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [87] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [aux_sym_preproc_else_token1] = ACTIONS(984), - [aux_sym_preproc_elif_token1] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [anon_sym_asm] = ACTIONS(984), - [anon_sym___asm__] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [206] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1278), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1278), + [anon_sym_extern] = 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_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = 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_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = 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), }, - [88] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_if_token2] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [aux_sym_preproc_else_token1] = ACTIONS(988), - [aux_sym_preproc_elif_token1] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [anon_sym_asm] = ACTIONS(988), - [anon_sym___asm__] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [207] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [aux_sym_preproc_else_token1] = ACTIONS(1328), + [aux_sym_preproc_elif_token1] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [89] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_if_token2] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [aux_sym_preproc_else_token1] = ACTIONS(992), - [aux_sym_preproc_elif_token1] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [anon_sym_asm] = ACTIONS(992), - [anon_sym___asm__] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [208] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [aux_sym_preproc_else_token1] = ACTIONS(1254), + [aux_sym_preproc_elif_token1] = ACTIONS(1254), + [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_typedef] = ACTIONS(1254), + [anon_sym_extern] = 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_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = 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), }, - [90] = { - [ts_builtin_sym_end] = ACTIONS(922), - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [anon_sym_asm] = ACTIONS(920), - [anon_sym___asm__] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), + [209] = { + [sym_else_clause] = STATE(305), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_thread_local] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_constexpr] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [anon_sym_NULL] = ACTIONS(1072), + [anon_sym_nullptr] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [91] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_if_token2] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [aux_sym_preproc_else_token1] = ACTIONS(996), - [aux_sym_preproc_elif_token1] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [anon_sym_asm] = ACTIONS(996), - [anon_sym___asm__] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), + [210] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [aux_sym_preproc_else_token1] = ACTIONS(1316), + [aux_sym_preproc_elif_token1] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [92] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token2] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [aux_sym_preproc_else_token1] = ACTIONS(1000), - [aux_sym_preproc_elif_token1] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym___asm__] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [211] = { + [sym_else_clause] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_thread_local] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_constexpr] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [anon_sym_NULL] = ACTIONS(1072), + [anon_sym_nullptr] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [93] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [aux_sym_preproc_else_token1] = ACTIONS(1004), - [aux_sym_preproc_elif_token1] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym___asm__] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), + [212] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [aux_sym_preproc_else_token1] = ACTIONS(1312), + [aux_sym_preproc_elif_token1] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [94] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [aux_sym_preproc_else_token1] = ACTIONS(1008), - [aux_sym_preproc_elif_token1] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [anon_sym_asm] = ACTIONS(1008), - [anon_sym___asm__] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [213] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1290), + [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1290), + [anon_sym_extern] = 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_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = 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_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = 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), }, - [95] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [aux_sym_preproc_else_token1] = ACTIONS(1012), - [aux_sym_preproc_elif_token1] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [anon_sym_asm] = ACTIONS(1012), - [anon_sym___asm__] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [214] = { + [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_typedef] = ACTIONS(1198), + [anon_sym_extern] = 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_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = 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), }, - [96] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token2] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [aux_sym_preproc_else_token1] = ACTIONS(1016), - [aux_sym_preproc_elif_token1] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [anon_sym_asm] = ACTIONS(1016), - [anon_sym___asm__] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [215] = { + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1138), + [aux_sym_preproc_def_token1] = ACTIONS(1138), + [aux_sym_preproc_if_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), + [sym_preproc_directive] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_extern] = 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_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = 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), }, - [97] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [aux_sym_preproc_else_token1] = ACTIONS(1020), - [aux_sym_preproc_elif_token1] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym___asm__] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [216] = { + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), [sym_comment] = ACTIONS(3), }, - [98] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token2] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [aux_sym_preproc_else_token1] = ACTIONS(1024), - [aux_sym_preproc_elif_token1] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym_offsetof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1024), - [anon_sym___asm__] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), + [217] = { + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), [sym_comment] = ACTIONS(3), }, - [99] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [aux_sym_preproc_else_token1] = ACTIONS(1028), - [aux_sym_preproc_elif_token1] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [anon_sym_asm] = ACTIONS(1028), - [anon_sym___asm__] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [218] = { + [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_typedef] = ACTIONS(1162), + [anon_sym_extern] = 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_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = 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), }, - [100] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [aux_sym_preproc_else_token1] = ACTIONS(1032), - [aux_sym_preproc_elif_token1] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym___asm__] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [219] = { + [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_typedef] = ACTIONS(1166), + [anon_sym_extern] = 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_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = 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), }, - [101] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [aux_sym_preproc_else_token1] = ACTIONS(1036), - [aux_sym_preproc_elif_token1] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym___asm__] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [220] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_thread_local] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_constexpr] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [anon_sym_NULL] = ACTIONS(1082), + [anon_sym_nullptr] = ACTIONS(1082), [sym_comment] = ACTIONS(3), }, - [102] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [aux_sym_preproc_else_token1] = ACTIONS(1040), - [aux_sym_preproc_elif_token1] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [anon_sym_asm] = ACTIONS(1040), - [anon_sym___asm__] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [221] = { + [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_typedef] = ACTIONS(1178), + [anon_sym_extern] = 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_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = 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), }, - [103] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [aux_sym_preproc_else_token1] = ACTIONS(1044), - [aux_sym_preproc_elif_token1] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [222] = { + [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_typedef] = ACTIONS(1182), + [anon_sym_extern] = 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_static] = ACTIONS(1182), + [anon_sym_auto] = ACTIONS(1182), + [anon_sym_register] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1182), + [anon_sym_unsigned] = ACTIONS(1182), + [anon_sym_long] = ACTIONS(1182), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_sizeof] = ACTIONS(1182), + [anon_sym_offsetof] = ACTIONS(1182), + [anon_sym__Generic] = 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), }, - [104] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [aux_sym_preproc_else_token1] = ACTIONS(1048), - [aux_sym_preproc_elif_token1] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [223] = { + [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_typedef] = ACTIONS(1186), + [anon_sym_extern] = 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_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = 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), }, - [105] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [aux_sym_preproc_else_token1] = ACTIONS(1052), - [aux_sym_preproc_elif_token1] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [224] = { + [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_typedef] = ACTIONS(1190), + [anon_sym_extern] = 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_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = 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), }, - [106] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [aux_sym_preproc_else_token1] = ACTIONS(1056), - [aux_sym_preproc_elif_token1] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym___asm__] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [225] = { + [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_typedef] = ACTIONS(1194), + [anon_sym_extern] = 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_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = 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), }, - [107] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [aux_sym_preproc_else_token1] = ACTIONS(1060), - [aux_sym_preproc_elif_token1] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [226] = { + [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_typedef] = ACTIONS(1198), + [anon_sym_extern] = 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_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = 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), }, - [108] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [aux_sym_preproc_else_token1] = ACTIONS(1060), - [aux_sym_preproc_elif_token1] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [227] = { + [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_typedef] = ACTIONS(1202), + [anon_sym_extern] = 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_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = 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), }, - [109] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token2] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [aux_sym_preproc_else_token1] = ACTIONS(1064), - [aux_sym_preproc_elif_token1] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym_offsetof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [anon_sym_asm] = ACTIONS(1064), - [anon_sym___asm__] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [228] = { + [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_typedef] = ACTIONS(1206), + [anon_sym_extern] = 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_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = 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), }, - [110] = { - [sym__expression] = STATE(665), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(645), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(645), - [sym_call_expression] = STATE(645), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(645), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(645), - [sym_initializer_list] = STATE(638), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_identifier] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_STAR_EQ] = ACTIONS(896), - [anon_sym_SLASH_EQ] = ACTIONS(896), - [anon_sym_PERCENT_EQ] = ACTIONS(896), - [anon_sym_PLUS_EQ] = ACTIONS(896), - [anon_sym_DASH_EQ] = ACTIONS(896), - [anon_sym_LT_LT_EQ] = ACTIONS(896), - [anon_sym_GT_GT_EQ] = ACTIONS(896), - [anon_sym_AMP_EQ] = ACTIONS(896), - [anon_sym_CARET_EQ] = ACTIONS(896), - [anon_sym_PIPE_EQ] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_PLUS_PLUS] = ACTIONS(1076), - [anon_sym_sizeof] = ACTIONS(1078), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DASH_GT] = ACTIONS(896), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [229] = { + [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_typedef] = ACTIONS(1210), + [anon_sym_extern] = 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_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, - [111] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token2] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [aux_sym_preproc_else_token1] = ACTIONS(1080), - [aux_sym_preproc_elif_token1] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_else] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym_offsetof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [anon_sym_asm] = ACTIONS(1080), - [anon_sym___asm__] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [230] = { + [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_typedef] = ACTIONS(1214), + [anon_sym_extern] = 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_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = 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), }, - [112] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(212), - [sym_attributed_statement] = STATE(212), - [sym_labeled_statement] = STATE(212), - [sym_expression_statement] = STATE(212), - [sym_if_statement] = STATE(212), - [sym_switch_statement] = STATE(212), - [sym_case_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_do_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_return_statement] = STATE(212), - [sym_break_statement] = STATE(212), - [sym_continue_statement] = STATE(212), - [sym_goto_statement] = STATE(212), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [231] = { + [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_typedef] = ACTIONS(1218), + [anon_sym_extern] = 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_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = 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), }, - [113] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(80), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_case_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [232] = { + [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_typedef] = ACTIONS(1222), + [anon_sym_extern] = 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_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = 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), }, - [114] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [233] = { + [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_typedef] = ACTIONS(1226), + [anon_sym_extern] = 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_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = 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), }, - [115] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token2] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [aux_sym_preproc_else_token1] = ACTIONS(1092), - [aux_sym_preproc_elif_token1] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym_offsetof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [anon_sym_asm] = ACTIONS(1092), - [anon_sym___asm__] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [234] = { + [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_typedef] = ACTIONS(1230), + [anon_sym_extern] = 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_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = 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), }, - [116] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(306), - [sym_attributed_statement] = STATE(306), - [sym_labeled_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [235] = { + [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_typedef] = ACTIONS(1234), + [anon_sym_extern] = 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_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = 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), }, - [117] = { - [sym_attribute_declaration] = STATE(184), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [236] = { + [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_typedef] = ACTIONS(1238), + [anon_sym_extern] = 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_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = 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), }, - [118] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [237] = { + [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_typedef] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym___attribute__] = ACTIONS(1242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1244), + [anon_sym___declspec] = ACTIONS(1242), + [anon_sym___cdecl] = ACTIONS(1242), + [anon_sym___clrcall] = ACTIONS(1242), + [anon_sym___stdcall] = ACTIONS(1242), + [anon_sym___fastcall] = ACTIONS(1242), + [anon_sym___thiscall] = ACTIONS(1242), + [anon_sym___vectorcall] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = 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), }, - [119] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(312), - [sym_attributed_statement] = STATE(312), - [sym_labeled_statement] = STATE(312), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(312), - [sym_switch_statement] = STATE(312), - [sym_case_statement] = STATE(312), - [sym_while_statement] = STATE(312), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(312), - [sym_return_statement] = STATE(312), - [sym_break_statement] = STATE(312), - [sym_continue_statement] = STATE(312), - [sym_goto_statement] = STATE(312), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [238] = { + [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_typedef] = ACTIONS(1246), + [anon_sym_extern] = 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_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = 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), + }, + [239] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = ACTIONS(1134), + [anon_sym_asm] = ACTIONS(1134), + [anon_sym___asm__] = ACTIONS(1134), + [sym_number_literal] = ACTIONS(1136), + [anon_sym_L_SQUOTE] = ACTIONS(1136), + [anon_sym_u_SQUOTE] = ACTIONS(1136), + [anon_sym_U_SQUOTE] = ACTIONS(1136), + [anon_sym_u8_SQUOTE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_L_DQUOTE] = ACTIONS(1136), + [anon_sym_u_DQUOTE] = ACTIONS(1136), + [anon_sym_U_DQUOTE] = ACTIONS(1136), + [anon_sym_u8_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [sym_true] = ACTIONS(1134), + [sym_false] = ACTIONS(1134), + [anon_sym_NULL] = ACTIONS(1134), + [anon_sym_nullptr] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + }, + [240] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), + }, + [241] = { + [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_typedef] = ACTIONS(1142), + [anon_sym_extern] = 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_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = 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), + }, + [242] = { + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_thread_local] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_constexpr] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [anon_sym_NULL] = ACTIONS(1086), + [anon_sym_nullptr] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [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_typedef] = ACTIONS(1138), + [anon_sym_extern] = 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_static] = ACTIONS(1138), + [anon_sym_auto] = ACTIONS(1138), + [anon_sym_register] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1138), + [anon_sym_unsigned] = ACTIONS(1138), + [anon_sym_long] = ACTIONS(1138), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym_offsetof] = ACTIONS(1138), + [anon_sym__Generic] = 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), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), [sym_comment] = ACTIONS(3), }, - [120] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(313), - [sym_attributed_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [245] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, - [121] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(266), - [sym_attributed_statement] = STATE(266), - [sym_labeled_statement] = STATE(266), - [sym_expression_statement] = STATE(266), - [sym_if_statement] = STATE(266), - [sym_switch_statement] = STATE(266), - [sym_case_statement] = STATE(266), - [sym_while_statement] = STATE(266), - [sym_do_statement] = STATE(266), - [sym_for_statement] = STATE(266), - [sym_return_statement] = STATE(266), - [sym_break_statement] = STATE(266), - [sym_continue_statement] = STATE(266), - [sym_goto_statement] = STATE(266), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [246] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, - [122] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(251), - [sym_attributed_statement] = STATE(251), - [sym_labeled_statement] = STATE(251), - [sym_expression_statement] = STATE(251), - [sym_if_statement] = STATE(251), - [sym_switch_statement] = STATE(251), - [sym_case_statement] = STATE(251), - [sym_while_statement] = STATE(251), - [sym_do_statement] = STATE(251), - [sym_for_statement] = STATE(251), - [sym_return_statement] = STATE(251), - [sym_break_statement] = STATE(251), - [sym_continue_statement] = STATE(251), - [sym_goto_statement] = STATE(251), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [247] = { + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [123] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(315), - [sym_attributed_statement] = STATE(315), - [sym_labeled_statement] = STATE(315), - [sym_expression_statement] = STATE(315), - [sym_if_statement] = STATE(315), - [sym_switch_statement] = STATE(315), - [sym_case_statement] = STATE(315), - [sym_while_statement] = STATE(315), - [sym_do_statement] = STATE(315), - [sym_for_statement] = STATE(315), - [sym_return_statement] = STATE(315), - [sym_break_statement] = STATE(315), - [sym_continue_statement] = STATE(315), - [sym_goto_statement] = STATE(315), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [248] = { + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), [sym_comment] = ACTIONS(3), }, - [124] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(256), - [sym_attributed_statement] = STATE(256), - [sym_labeled_statement] = STATE(256), - [sym_expression_statement] = STATE(256), - [sym_if_statement] = STATE(256), - [sym_switch_statement] = STATE(256), - [sym_case_statement] = STATE(256), - [sym_while_statement] = STATE(256), - [sym_do_statement] = STATE(256), - [sym_for_statement] = STATE(256), - [sym_return_statement] = STATE(256), - [sym_break_statement] = STATE(256), - [sym_continue_statement] = STATE(256), - [sym_goto_statement] = STATE(256), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [249] = { + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), [sym_comment] = ACTIONS(3), }, - [125] = { - [sym_identifier] = ACTIONS(1098), - [aux_sym_preproc_include_token1] = ACTIONS(1098), - [aux_sym_preproc_def_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token2] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), - [aux_sym_preproc_else_token1] = ACTIONS(1098), - [aux_sym_preproc_elif_token1] = ACTIONS(1098), - [sym_preproc_directive] = ACTIONS(1098), - [anon_sym_LPAREN2] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym___attribute__] = ACTIONS(1098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym___declspec] = ACTIONS(1098), - [anon_sym___cdecl] = ACTIONS(1098), - [anon_sym___clrcall] = ACTIONS(1098), - [anon_sym___stdcall] = ACTIONS(1098), - [anon_sym___fastcall] = ACTIONS(1098), - [anon_sym___thiscall] = ACTIONS(1098), - [anon_sym___vectorcall] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_auto] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_inline] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_volatile] = ACTIONS(1098), - [anon_sym_restrict] = ACTIONS(1098), - [anon_sym___restrict__] = ACTIONS(1098), - [anon_sym__Atomic] = ACTIONS(1098), - [anon_sym__Noreturn] = ACTIONS(1098), - [anon_sym_signed] = ACTIONS(1098), - [anon_sym_unsigned] = ACTIONS(1098), - [anon_sym_long] = ACTIONS(1098), - [anon_sym_short] = ACTIONS(1098), - [sym_primitive_type] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_goto] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_sizeof] = ACTIONS(1098), - [anon_sym_offsetof] = ACTIONS(1098), - [anon_sym__Generic] = ACTIONS(1098), - [anon_sym_asm] = ACTIONS(1098), - [anon_sym___asm__] = ACTIONS(1098), - [sym_number_literal] = ACTIONS(1100), - [anon_sym_L_SQUOTE] = ACTIONS(1100), - [anon_sym_u_SQUOTE] = ACTIONS(1100), - [anon_sym_U_SQUOTE] = ACTIONS(1100), - [anon_sym_u8_SQUOTE] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_L_DQUOTE] = ACTIONS(1100), - [anon_sym_u_DQUOTE] = ACTIONS(1100), - [anon_sym_U_DQUOTE] = ACTIONS(1100), - [anon_sym_u8_DQUOTE] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_true] = ACTIONS(1098), - [sym_false] = ACTIONS(1098), - [sym_null] = ACTIONS(1098), + [250] = { + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1118), + [aux_sym_preproc_include_token1] = ACTIONS(1118), + [aux_sym_preproc_def_token1] = ACTIONS(1118), + [aux_sym_preproc_if_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), + [sym_preproc_directive] = ACTIONS(1118), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym___attribute__] = ACTIONS(1118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), + [anon_sym___declspec] = ACTIONS(1118), + [anon_sym___cdecl] = ACTIONS(1118), + [anon_sym___clrcall] = ACTIONS(1118), + [anon_sym___stdcall] = ACTIONS(1118), + [anon_sym___fastcall] = ACTIONS(1118), + [anon_sym___thiscall] = ACTIONS(1118), + [anon_sym___vectorcall] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_auto] = ACTIONS(1118), + [anon_sym_register] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym___restrict__] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), + [anon_sym_signed] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1118), + [anon_sym_long] = ACTIONS(1118), + [anon_sym_short] = ACTIONS(1118), + [sym_primitive_type] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_goto] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_sizeof] = ACTIONS(1118), + [anon_sym_offsetof] = ACTIONS(1118), + [anon_sym__Generic] = ACTIONS(1118), + [anon_sym_asm] = ACTIONS(1118), + [anon_sym___asm__] = ACTIONS(1118), + [sym_number_literal] = ACTIONS(1120), + [anon_sym_L_SQUOTE] = ACTIONS(1120), + [anon_sym_u_SQUOTE] = ACTIONS(1120), + [anon_sym_U_SQUOTE] = ACTIONS(1120), + [anon_sym_u8_SQUOTE] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_L_DQUOTE] = ACTIONS(1120), + [anon_sym_u_DQUOTE] = ACTIONS(1120), + [anon_sym_U_DQUOTE] = ACTIONS(1120), + [anon_sym_u8_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [sym_true] = ACTIONS(1118), + [sym_false] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), [sym_comment] = ACTIONS(3), }, - [126] = { - [sym_identifier] = ACTIONS(1102), - [aux_sym_preproc_include_token1] = ACTIONS(1102), - [aux_sym_preproc_def_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token2] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), - [aux_sym_preproc_else_token1] = ACTIONS(1102), - [aux_sym_preproc_elif_token1] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_LPAREN2] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym___attribute__] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), - [anon_sym___declspec] = ACTIONS(1102), - [anon_sym___cdecl] = ACTIONS(1102), - [anon_sym___clrcall] = ACTIONS(1102), - [anon_sym___stdcall] = ACTIONS(1102), - [anon_sym___fastcall] = ACTIONS(1102), - [anon_sym___thiscall] = ACTIONS(1102), - [anon_sym___vectorcall] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym___restrict__] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym__Noreturn] = ACTIONS(1102), - [anon_sym_signed] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [anon_sym_offsetof] = ACTIONS(1102), - [anon_sym__Generic] = ACTIONS(1102), - [anon_sym_asm] = ACTIONS(1102), - [anon_sym___asm__] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_L_SQUOTE] = ACTIONS(1104), - [anon_sym_u_SQUOTE] = ACTIONS(1104), - [anon_sym_U_SQUOTE] = ACTIONS(1104), - [anon_sym_u8_SQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_L_DQUOTE] = ACTIONS(1104), - [anon_sym_u_DQUOTE] = ACTIONS(1104), - [anon_sym_U_DQUOTE] = ACTIONS(1104), - [anon_sym_u8_DQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), + [251] = { + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1122), + [aux_sym_preproc_include_token1] = ACTIONS(1122), + [aux_sym_preproc_def_token1] = ACTIONS(1122), + [aux_sym_preproc_if_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), + [sym_preproc_directive] = ACTIONS(1122), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym___attribute__] = ACTIONS(1122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), + [anon_sym___declspec] = ACTIONS(1122), + [anon_sym___cdecl] = ACTIONS(1122), + [anon_sym___clrcall] = ACTIONS(1122), + [anon_sym___stdcall] = ACTIONS(1122), + [anon_sym___fastcall] = ACTIONS(1122), + [anon_sym___thiscall] = ACTIONS(1122), + [anon_sym___vectorcall] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_auto] = ACTIONS(1122), + [anon_sym_register] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), + [anon_sym_volatile] = ACTIONS(1122), + [anon_sym_restrict] = ACTIONS(1122), + [anon_sym___restrict__] = ACTIONS(1122), + [anon_sym__Atomic] = ACTIONS(1122), + [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), + [anon_sym_signed] = ACTIONS(1122), + [anon_sym_unsigned] = ACTIONS(1122), + [anon_sym_long] = ACTIONS(1122), + [anon_sym_short] = ACTIONS(1122), + [sym_primitive_type] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_goto] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_sizeof] = ACTIONS(1122), + [anon_sym_offsetof] = ACTIONS(1122), + [anon_sym__Generic] = ACTIONS(1122), + [anon_sym_asm] = ACTIONS(1122), + [anon_sym___asm__] = ACTIONS(1122), + [sym_number_literal] = ACTIONS(1124), + [anon_sym_L_SQUOTE] = ACTIONS(1124), + [anon_sym_u_SQUOTE] = ACTIONS(1124), + [anon_sym_U_SQUOTE] = ACTIONS(1124), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), [sym_comment] = ACTIONS(3), }, - [127] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(262), - [sym_attributed_statement] = STATE(262), - [sym_labeled_statement] = STATE(262), - [sym_expression_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_switch_statement] = STATE(262), - [sym_case_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_do_statement] = STATE(262), - [sym_for_statement] = STATE(262), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(262), - [sym_goto_statement] = STATE(262), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [252] = { + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(1114), + [aux_sym_preproc_def_token1] = ACTIONS(1114), + [aux_sym_preproc_if_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1114), + [anon_sym_LPAREN2] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym___attribute__] = ACTIONS(1114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), + [anon_sym___declspec] = ACTIONS(1114), + [anon_sym___cdecl] = ACTIONS(1114), + [anon_sym___clrcall] = ACTIONS(1114), + [anon_sym___stdcall] = ACTIONS(1114), + [anon_sym___fastcall] = ACTIONS(1114), + [anon_sym___thiscall] = ACTIONS(1114), + [anon_sym___vectorcall] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_auto] = ACTIONS(1114), + [anon_sym_register] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), + [anon_sym_volatile] = ACTIONS(1114), + [anon_sym_restrict] = ACTIONS(1114), + [anon_sym___restrict__] = ACTIONS(1114), + [anon_sym__Atomic] = ACTIONS(1114), + [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(1114), + [anon_sym_unsigned] = ACTIONS(1114), + [anon_sym_long] = ACTIONS(1114), + [anon_sym_short] = ACTIONS(1114), + [sym_primitive_type] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_sizeof] = ACTIONS(1114), + [anon_sym_offsetof] = ACTIONS(1114), + [anon_sym__Generic] = ACTIONS(1114), + [anon_sym_asm] = ACTIONS(1114), + [anon_sym___asm__] = ACTIONS(1114), + [sym_number_literal] = ACTIONS(1116), + [anon_sym_L_SQUOTE] = ACTIONS(1116), + [anon_sym_u_SQUOTE] = ACTIONS(1116), + [anon_sym_U_SQUOTE] = ACTIONS(1116), + [anon_sym_u8_SQUOTE] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_L_DQUOTE] = ACTIONS(1116), + [anon_sym_u_DQUOTE] = ACTIONS(1116), + [anon_sym_U_DQUOTE] = ACTIONS(1116), + [anon_sym_u8_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [sym_true] = ACTIONS(1114), + [sym_false] = ACTIONS(1114), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), [sym_comment] = ACTIONS(3), }, - [128] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(215), - [sym_attributed_statement] = STATE(215), - [sym_labeled_statement] = STATE(215), - [sym_expression_statement] = STATE(215), - [sym_if_statement] = STATE(215), - [sym_switch_statement] = STATE(215), - [sym_case_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_do_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_return_statement] = STATE(215), - [sym_break_statement] = STATE(215), - [sym_continue_statement] = STATE(215), - [sym_goto_statement] = STATE(215), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [253] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_thread_local] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_constexpr] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [anon_sym_NULL] = ACTIONS(1086), + [anon_sym_nullptr] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [254] = { + [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_typedef] = ACTIONS(1174), + [anon_sym_extern] = 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_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = 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), }, - [130] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [255] = { + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), + [anon_sym___declspec] = ACTIONS(1110), + [anon_sym___cdecl] = ACTIONS(1110), + [anon_sym___clrcall] = ACTIONS(1110), + [anon_sym___stdcall] = ACTIONS(1110), + [anon_sym___fastcall] = ACTIONS(1110), + [anon_sym___thiscall] = ACTIONS(1110), + [anon_sym___vectorcall] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [anon_sym___restrict__] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_offsetof] = ACTIONS(1110), + [anon_sym__Generic] = ACTIONS(1110), + [anon_sym_asm] = ACTIONS(1110), + [anon_sym___asm__] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym_u_SQUOTE] = ACTIONS(1112), + [anon_sym_U_SQUOTE] = ACTIONS(1112), + [anon_sym_u8_SQUOTE] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_u_DQUOTE] = ACTIONS(1112), + [anon_sym_U_DQUOTE] = ACTIONS(1112), + [anon_sym_u8_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym_true] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(269), - [sym_attributed_statement] = STATE(269), - [sym_labeled_statement] = STATE(269), - [sym_expression_statement] = STATE(269), - [sym_if_statement] = STATE(269), - [sym_switch_statement] = STATE(269), - [sym_case_statement] = STATE(269), - [sym_while_statement] = STATE(269), - [sym_do_statement] = STATE(269), - [sym_for_statement] = STATE(269), - [sym_return_statement] = STATE(269), - [sym_break_statement] = STATE(269), - [sym_continue_statement] = STATE(269), - [sym_goto_statement] = STATE(269), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [256] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), [sym_comment] = ACTIONS(3), }, - [132] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(265), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_case_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_goto_statement] = STATE(265), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), + [257] = { + [sym__expression] = STATE(793), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(753), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(753), + [sym_call_expression] = STATE(753), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(753), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(753), + [sym_initializer_list] = STATE(738), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_identifier] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_STAR_EQ] = ACTIONS(1092), + [anon_sym_SLASH_EQ] = ACTIONS(1092), + [anon_sym_PERCENT_EQ] = ACTIONS(1092), + [anon_sym_PLUS_EQ] = ACTIONS(1092), + [anon_sym_DASH_EQ] = ACTIONS(1092), + [anon_sym_LT_LT_EQ] = ACTIONS(1092), + [anon_sym_GT_GT_EQ] = ACTIONS(1092), + [anon_sym_AMP_EQ] = ACTIONS(1092), + [anon_sym_CARET_EQ] = ACTIONS(1092), + [anon_sym_PIPE_EQ] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1352), [anon_sym_offsetof] = ACTIONS(83), [anon_sym__Generic] = ACTIONS(85), [anon_sym_asm] = ACTIONS(87), [anon_sym___asm__] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(1102), + [anon_sym_DASH_GT] = ACTIONS(1092), [sym_number_literal] = ACTIONS(89), [anon_sym_L_SQUOTE] = ACTIONS(91), [anon_sym_u_SQUOTE] = ACTIONS(91), @@ -28210,591 +41852,2763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym_attribute_declaration] = STATE(159), - [sym_compound_statement] = STATE(325), - [sym_attributed_statement] = STATE(325), - [sym_labeled_statement] = STATE(325), - [sym_expression_statement] = STATE(325), - [sym_if_statement] = STATE(325), - [sym_switch_statement] = STATE(325), - [sym_case_statement] = STATE(325), - [sym_while_statement] = STATE(325), - [sym_do_statement] = STATE(325), - [sym_for_statement] = STATE(325), - [sym_return_statement] = STATE(325), - [sym_break_statement] = STATE(325), - [sym_continue_statement] = STATE(325), - [sym_goto_statement] = STATE(325), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [258] = { + [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_typedef] = ACTIONS(1146), + [anon_sym_extern] = 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_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = 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), }, - [134] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(277), - [sym_labeled_statement] = STATE(277), - [sym_expression_statement] = STATE(277), - [sym_if_statement] = STATE(277), - [sym_switch_statement] = STATE(277), - [sym_case_statement] = STATE(277), - [sym_while_statement] = STATE(277), - [sym_do_statement] = STATE(277), - [sym_for_statement] = STATE(277), - [sym_return_statement] = STATE(277), - [sym_break_statement] = STATE(277), - [sym_continue_statement] = STATE(277), - [sym_goto_statement] = STATE(277), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [259] = { + [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_typedef] = ACTIONS(1150), + [anon_sym_extern] = 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_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = 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), }, - [135] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(272), - [sym_attributed_statement] = STATE(272), - [sym_labeled_statement] = STATE(272), - [sym_expression_statement] = STATE(272), - [sym_if_statement] = STATE(272), - [sym_switch_statement] = STATE(272), - [sym_case_statement] = STATE(272), - [sym_while_statement] = STATE(272), - [sym_do_statement] = STATE(272), - [sym_for_statement] = STATE(272), - [sym_return_statement] = STATE(272), - [sym_break_statement] = STATE(272), - [sym_continue_statement] = STATE(272), - [sym_goto_statement] = STATE(272), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [260] = { + [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_typedef] = ACTIONS(1154), + [anon_sym_extern] = 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_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = 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), }, - [136] = { - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token2] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [aux_sym_preproc_else_token1] = ACTIONS(1106), - [aux_sym_preproc_elif_token1] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), + [261] = { + [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_typedef] = ACTIONS(1158), + [anon_sym_extern] = 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_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = 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), }, - [137] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(102), - [sym_attributed_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_case_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [262] = { + [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_typedef] = ACTIONS(1170), + [anon_sym_extern] = 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_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = 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), }, - [138] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(85), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [263] = { + [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_typedef] = ACTIONS(1162), + [anon_sym_extern] = 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_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = 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), }, - [139] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(281), - [sym_attributed_statement] = STATE(281), - [sym_labeled_statement] = STATE(281), - [sym_expression_statement] = STATE(281), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(281), - [sym_case_statement] = STATE(281), - [sym_while_statement] = STATE(281), - [sym_do_statement] = STATE(281), - [sym_for_statement] = STATE(281), - [sym_return_statement] = STATE(281), - [sym_break_statement] = STATE(281), - [sym_continue_statement] = STATE(281), - [sym_goto_statement] = STATE(281), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [264] = { + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), + [sym_preproc_directive] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), + [anon_sym___declspec] = ACTIONS(1130), + [anon_sym___cdecl] = ACTIONS(1130), + [anon_sym___clrcall] = ACTIONS(1130), + [anon_sym___stdcall] = ACTIONS(1130), + [anon_sym___fastcall] = ACTIONS(1130), + [anon_sym___thiscall] = ACTIONS(1130), + [anon_sym___vectorcall] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_auto] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1130), + [anon_sym_restrict] = ACTIONS(1130), + [anon_sym___restrict__] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1130), + [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), + [anon_sym_signed] = ACTIONS(1130), + [anon_sym_unsigned] = ACTIONS(1130), + [anon_sym_long] = ACTIONS(1130), + [anon_sym_short] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(1130), + [anon_sym__Generic] = ACTIONS(1130), + [anon_sym_asm] = ACTIONS(1130), + [anon_sym___asm__] = ACTIONS(1130), + [sym_number_literal] = ACTIONS(1132), + [anon_sym_L_SQUOTE] = ACTIONS(1132), + [anon_sym_u_SQUOTE] = ACTIONS(1132), + [anon_sym_U_SQUOTE] = ACTIONS(1132), + [anon_sym_u8_SQUOTE] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_L_DQUOTE] = ACTIONS(1132), + [anon_sym_u_DQUOTE] = ACTIONS(1132), + [anon_sym_U_DQUOTE] = ACTIONS(1132), + [anon_sym_u8_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_true] = ACTIONS(1130), + [sym_false] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [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_typedef] = ACTIONS(1146), + [anon_sym_extern] = 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_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = 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), + }, + [266] = { + [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_typedef] = ACTIONS(1150), + [anon_sym_extern] = 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_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = 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), + }, + [267] = { + [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_typedef] = ACTIONS(1154), + [anon_sym_extern] = 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_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = 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), + }, + [268] = { + [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_typedef] = ACTIONS(1166), + [anon_sym_extern] = 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_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = 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), + }, + [269] = { + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_thread_local] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_constexpr] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [anon_sym_NULL] = ACTIONS(1082), + [anon_sym_nullptr] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [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_typedef] = ACTIONS(1178), + [anon_sym_extern] = 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_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = 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), + }, + [271] = { + [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_typedef] = ACTIONS(1182), + [anon_sym_extern] = 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_static] = ACTIONS(1182), + [anon_sym_auto] = ACTIONS(1182), + [anon_sym_register] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1182), + [anon_sym_unsigned] = ACTIONS(1182), + [anon_sym_long] = ACTIONS(1182), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_sizeof] = ACTIONS(1182), + [anon_sym_offsetof] = ACTIONS(1182), + [anon_sym__Generic] = 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), + }, + [272] = { + [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_typedef] = ACTIONS(1186), + [anon_sym_extern] = 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_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = 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), + }, + [273] = { + [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_typedef] = ACTIONS(1190), + [anon_sym_extern] = 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_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = 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), + }, + [274] = { + [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_typedef] = ACTIONS(1194), + [anon_sym_extern] = 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_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = 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), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [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_typedef] = ACTIONS(1202), + [anon_sym_extern] = 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_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1202), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = 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), + }, + [277] = { + [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_typedef] = ACTIONS(1206), + [anon_sym_extern] = 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_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = 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), + }, + [278] = { + [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_typedef] = ACTIONS(1210), + [anon_sym_extern] = 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_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [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_typedef] = ACTIONS(1214), + [anon_sym_extern] = 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_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = 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), + }, + [280] = { + [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_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_typedef] = ACTIONS(1218), + [anon_sym_extern] = 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_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = 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), + }, + [281] = { + [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_typedef] = ACTIONS(1222), + [anon_sym_extern] = 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_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = 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), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [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_typedef] = ACTIONS(1226), + [anon_sym_extern] = 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_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = 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), + }, + [284] = { + [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_typedef] = ACTIONS(1170), + [anon_sym_extern] = 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_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = 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), + }, + [285] = { + [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_typedef] = ACTIONS(1158), + [anon_sym_extern] = 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_static] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_offsetof] = ACTIONS(1158), + [anon_sym__Generic] = 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), + }, + [286] = { + [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_typedef] = ACTIONS(1154), + [anon_sym_extern] = 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_static] = ACTIONS(1154), + [anon_sym_auto] = ACTIONS(1154), + [anon_sym_register] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1154), + [anon_sym_unsigned] = ACTIONS(1154), + [anon_sym_long] = ACTIONS(1154), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_sizeof] = ACTIONS(1154), + [anon_sym_offsetof] = ACTIONS(1154), + [anon_sym__Generic] = 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), + }, + [287] = { + [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_typedef] = ACTIONS(1150), + [anon_sym_extern] = 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_static] = ACTIONS(1150), + [anon_sym_auto] = ACTIONS(1150), + [anon_sym_register] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1150), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_sizeof] = ACTIONS(1150), + [anon_sym_offsetof] = ACTIONS(1150), + [anon_sym__Generic] = 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), + }, + [288] = { + [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_typedef] = ACTIONS(1146), + [anon_sym_extern] = 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_static] = ACTIONS(1146), + [anon_sym_auto] = ACTIONS(1146), + [anon_sym_register] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1146), + [anon_sym_unsigned] = ACTIONS(1146), + [anon_sym_long] = ACTIONS(1146), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_sizeof] = ACTIONS(1146), + [anon_sym_offsetof] = ACTIONS(1146), + [anon_sym__Generic] = 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), + }, + [289] = { + [sym_identifier] = ACTIONS(1126), + [aux_sym_preproc_include_token1] = ACTIONS(1126), + [aux_sym_preproc_def_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token1] = ACTIONS(1126), + [aux_sym_preproc_if_token2] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), + [sym_preproc_directive] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), + [anon_sym___declspec] = ACTIONS(1126), + [anon_sym___cdecl] = ACTIONS(1126), + [anon_sym___clrcall] = ACTIONS(1126), + [anon_sym___stdcall] = ACTIONS(1126), + [anon_sym___fastcall] = ACTIONS(1126), + [anon_sym___thiscall] = ACTIONS(1126), + [anon_sym___vectorcall] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_auto] = ACTIONS(1126), + [anon_sym_register] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_thread_local] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_constexpr] = ACTIONS(1126), + [anon_sym_volatile] = ACTIONS(1126), + [anon_sym_restrict] = ACTIONS(1126), + [anon_sym___restrict__] = ACTIONS(1126), + [anon_sym__Atomic] = ACTIONS(1126), + [anon_sym__Noreturn] = ACTIONS(1126), + [anon_sym_noreturn] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(1126), + [anon_sym_unsigned] = ACTIONS(1126), + [anon_sym_long] = ACTIONS(1126), + [anon_sym_short] = ACTIONS(1126), + [sym_primitive_type] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_goto] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1126), + [anon_sym_offsetof] = ACTIONS(1126), + [anon_sym__Generic] = ACTIONS(1126), + [anon_sym_asm] = ACTIONS(1126), + [anon_sym___asm__] = ACTIONS(1126), + [sym_number_literal] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1128), + [anon_sym_u_SQUOTE] = ACTIONS(1128), + [anon_sym_U_SQUOTE] = ACTIONS(1128), + [anon_sym_u8_SQUOTE] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_L_DQUOTE] = ACTIONS(1128), + [anon_sym_u_DQUOTE] = ACTIONS(1128), + [anon_sym_U_DQUOTE] = ACTIONS(1128), + [anon_sym_u8_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [sym_true] = ACTIONS(1126), + [sym_false] = ACTIONS(1126), + [anon_sym_NULL] = ACTIONS(1126), + [anon_sym_nullptr] = ACTIONS(1126), [sym_comment] = ACTIONS(3), }, - [140] = { + [290] = { [sym_identifier] = ACTIONS(1110), [aux_sym_preproc_include_token1] = ACTIONS(1110), [aux_sym_preproc_def_token1] = ACTIONS(1110), @@ -28802,8 +44616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1110), [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [aux_sym_preproc_else_token1] = ACTIONS(1110), - [aux_sym_preproc_elif_token1] = ACTIONS(1110), [sym_preproc_directive] = ACTIONS(1110), [anon_sym_LPAREN2] = ACTIONS(1112), [anon_sym_BANG] = ACTIONS(1112), @@ -28829,12 +44641,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1110), [anon_sym_register] = ACTIONS(1110), [anon_sym_inline] = ACTIONS(1110), + [anon_sym_thread_local] = ACTIONS(1110), [anon_sym_const] = ACTIONS(1110), + [anon_sym_constexpr] = ACTIONS(1110), [anon_sym_volatile] = ACTIONS(1110), [anon_sym_restrict] = ACTIONS(1110), [anon_sym___restrict__] = ACTIONS(1110), [anon_sym__Atomic] = ACTIONS(1110), [anon_sym__Noreturn] = ACTIONS(1110), + [anon_sym_noreturn] = ACTIONS(1110), [anon_sym_signed] = ACTIONS(1110), [anon_sym_unsigned] = ACTIONS(1110), [anon_sym_long] = ACTIONS(1110), @@ -28844,6 +44659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1110), [anon_sym_union] = ACTIONS(1110), [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), [anon_sym_switch] = ACTIONS(1110), [anon_sym_case] = ACTIONS(1110), [anon_sym_default] = ACTIONS(1110), @@ -28874,425 +44690,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1112), [sym_true] = ACTIONS(1110), [sym_false] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(292), - [sym_attributed_statement] = STATE(292), - [sym_labeled_statement] = STATE(292), - [sym_expression_statement] = STATE(292), - [sym_if_statement] = STATE(292), - [sym_switch_statement] = STATE(292), - [sym_case_statement] = STATE(292), - [sym_while_statement] = STATE(292), - [sym_do_statement] = STATE(292), - [sym_for_statement] = STATE(292), - [sym_return_statement] = STATE(292), - [sym_break_statement] = STATE(292), - [sym_continue_statement] = STATE(292), - [sym_goto_statement] = STATE(292), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(1110), + [anon_sym_nullptr] = ACTIONS(1110), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [291] = { + [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_typedef] = ACTIONS(1230), + [anon_sym_extern] = 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_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = 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), }, - [143] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(294), - [sym_attributed_statement] = STATE(294), - [sym_labeled_statement] = STATE(294), - [sym_expression_statement] = STATE(294), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(294), - [sym_case_statement] = STATE(294), - [sym_while_statement] = STATE(294), - [sym_do_statement] = STATE(294), - [sym_for_statement] = STATE(294), - [sym_return_statement] = STATE(294), - [sym_break_statement] = STATE(294), - [sym_continue_statement] = STATE(294), - [sym_goto_statement] = STATE(294), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [292] = { + [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_typedef] = ACTIONS(1234), + [anon_sym_extern] = 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_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = 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), }, - [144] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(297), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(297), - [sym_expression_statement] = STATE(297), - [sym_if_statement] = STATE(297), - [sym_switch_statement] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_while_statement] = STATE(297), - [sym_do_statement] = STATE(297), - [sym_for_statement] = STATE(297), - [sym_return_statement] = STATE(297), - [sym_break_statement] = STATE(297), - [sym_continue_statement] = STATE(297), - [sym_goto_statement] = STATE(297), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [293] = { + [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_typedef] = ACTIONS(1174), + [anon_sym_extern] = 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_static] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_offsetof] = ACTIONS(1174), + [anon_sym__Generic] = 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), }, - [145] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(300), - [sym_attributed_statement] = STATE(300), - [sym_labeled_statement] = STATE(300), - [sym_expression_statement] = STATE(300), - [sym_if_statement] = STATE(300), - [sym_switch_statement] = STATE(300), - [sym_case_statement] = STATE(300), - [sym_while_statement] = STATE(300), - [sym_do_statement] = STATE(300), - [sym_for_statement] = STATE(300), - [sym_return_statement] = STATE(300), - [sym_break_statement] = STATE(300), - [sym_continue_statement] = STATE(300), - [sym_goto_statement] = STATE(300), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [294] = { + [sym_identifier] = ACTIONS(1086), + [aux_sym_preproc_include_token1] = ACTIONS(1086), + [aux_sym_preproc_def_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token1] = ACTIONS(1086), + [aux_sym_preproc_if_token2] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym___attribute__] = ACTIONS(1086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1088), + [anon_sym___declspec] = ACTIONS(1086), + [anon_sym___cdecl] = ACTIONS(1086), + [anon_sym___clrcall] = ACTIONS(1086), + [anon_sym___stdcall] = ACTIONS(1086), + [anon_sym___fastcall] = ACTIONS(1086), + [anon_sym___thiscall] = ACTIONS(1086), + [anon_sym___vectorcall] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_thread_local] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_constexpr] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym___restrict__] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym__Noreturn] = ACTIONS(1086), + [anon_sym_noreturn] = ACTIONS(1086), + [anon_sym_signed] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [anon_sym_offsetof] = ACTIONS(1086), + [anon_sym__Generic] = ACTIONS(1086), + [anon_sym_asm] = ACTIONS(1086), + [anon_sym___asm__] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_L_SQUOTE] = ACTIONS(1088), + [anon_sym_u_SQUOTE] = ACTIONS(1088), + [anon_sym_U_SQUOTE] = ACTIONS(1088), + [anon_sym_u8_SQUOTE] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_L_DQUOTE] = ACTIONS(1088), + [anon_sym_u_DQUOTE] = ACTIONS(1088), + [anon_sym_U_DQUOTE] = ACTIONS(1088), + [anon_sym_u8_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [anon_sym_NULL] = ACTIONS(1086), + [anon_sym_nullptr] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, - [146] = { + [295] = { [sym_identifier] = ACTIONS(1114), [aux_sym_preproc_include_token1] = ACTIONS(1114), [aux_sym_preproc_def_token1] = ACTIONS(1114), @@ -29300,8 +45046,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1114), [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [aux_sym_preproc_else_token1] = ACTIONS(1114), - [aux_sym_preproc_elif_token1] = ACTIONS(1114), [sym_preproc_directive] = ACTIONS(1114), [anon_sym_LPAREN2] = ACTIONS(1116), [anon_sym_BANG] = ACTIONS(1116), @@ -29327,12 +45071,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1114), [anon_sym_register] = ACTIONS(1114), [anon_sym_inline] = ACTIONS(1114), + [anon_sym_thread_local] = ACTIONS(1114), [anon_sym_const] = ACTIONS(1114), + [anon_sym_constexpr] = ACTIONS(1114), [anon_sym_volatile] = ACTIONS(1114), [anon_sym_restrict] = ACTIONS(1114), [anon_sym___restrict__] = ACTIONS(1114), [anon_sym__Atomic] = ACTIONS(1114), [anon_sym__Noreturn] = ACTIONS(1114), + [anon_sym_noreturn] = ACTIONS(1114), [anon_sym_signed] = ACTIONS(1114), [anon_sym_unsigned] = ACTIONS(1114), [anon_sym_long] = ACTIONS(1114), @@ -29342,6 +45089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1114), [anon_sym_union] = ACTIONS(1114), [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), [anon_sym_switch] = ACTIONS(1114), [anon_sym_case] = ACTIONS(1114), [anon_sym_default] = ACTIONS(1114), @@ -29372,259 +45120,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1116), [sym_true] = ACTIONS(1114), [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(299), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(299), - [sym_expression_statement] = STATE(299), - [sym_if_statement] = STATE(299), - [sym_switch_statement] = STATE(299), - [sym_case_statement] = STATE(299), - [sym_while_statement] = STATE(299), - [sym_do_statement] = STATE(299), - [sym_for_statement] = STATE(299), - [sym_return_statement] = STATE(299), - [sym_break_statement] = STATE(299), - [sym_continue_statement] = STATE(299), - [sym_goto_statement] = STATE(299), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(217), - [sym_attributed_statement] = STATE(217), - [sym_labeled_statement] = STATE(217), - [sym_expression_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_switch_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_do_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_return_statement] = STATE(217), - [sym_break_statement] = STATE(217), - [sym_continue_statement] = STATE(217), - [sym_goto_statement] = STATE(217), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(298), - [sym_attributed_statement] = STATE(298), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(298), - [sym_if_statement] = STATE(298), - [sym_switch_statement] = STATE(298), - [sym_case_statement] = STATE(298), - [sym_while_statement] = STATE(298), - [sym_do_statement] = STATE(298), - [sym_for_statement] = STATE(298), - [sym_return_statement] = STATE(298), - [sym_break_statement] = STATE(298), - [sym_continue_statement] = STATE(298), - [sym_goto_statement] = STATE(298), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(1114), + [anon_sym_nullptr] = ACTIONS(1114), [sym_comment] = ACTIONS(3), }, - [150] = { + [296] = { [sym_identifier] = ACTIONS(1118), [aux_sym_preproc_include_token1] = ACTIONS(1118), [aux_sym_preproc_def_token1] = ACTIONS(1118), @@ -29632,8 +45132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1118), [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), - [aux_sym_preproc_else_token1] = ACTIONS(1118), - [aux_sym_preproc_elif_token1] = ACTIONS(1118), [sym_preproc_directive] = ACTIONS(1118), [anon_sym_LPAREN2] = ACTIONS(1120), [anon_sym_BANG] = ACTIONS(1120), @@ -29659,12 +45157,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1118), [anon_sym_register] = ACTIONS(1118), [anon_sym_inline] = ACTIONS(1118), + [anon_sym_thread_local] = ACTIONS(1118), [anon_sym_const] = ACTIONS(1118), + [anon_sym_constexpr] = ACTIONS(1118), [anon_sym_volatile] = ACTIONS(1118), [anon_sym_restrict] = ACTIONS(1118), [anon_sym___restrict__] = ACTIONS(1118), [anon_sym__Atomic] = ACTIONS(1118), [anon_sym__Noreturn] = ACTIONS(1118), + [anon_sym_noreturn] = ACTIONS(1118), [anon_sym_signed] = ACTIONS(1118), [anon_sym_unsigned] = ACTIONS(1118), [anon_sym_long] = ACTIONS(1118), @@ -29674,6 +45175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1118), [anon_sym_union] = ACTIONS(1118), [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), [anon_sym_switch] = ACTIONS(1118), [anon_sym_case] = ACTIONS(1118), [anon_sym_default] = ACTIONS(1118), @@ -29704,10 +45206,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1120), [sym_true] = ACTIONS(1118), [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), + [anon_sym_NULL] = ACTIONS(1118), + [anon_sym_nullptr] = ACTIONS(1118), [sym_comment] = ACTIONS(3), }, - [151] = { + [297] = { [sym_identifier] = ACTIONS(1122), [aux_sym_preproc_include_token1] = ACTIONS(1122), [aux_sym_preproc_def_token1] = ACTIONS(1122), @@ -29715,8 +45218,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1122), [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), - [aux_sym_preproc_else_token1] = ACTIONS(1122), - [aux_sym_preproc_elif_token1] = ACTIONS(1122), [sym_preproc_directive] = ACTIONS(1122), [anon_sym_LPAREN2] = ACTIONS(1124), [anon_sym_BANG] = ACTIONS(1124), @@ -29742,12 +45243,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1122), [anon_sym_register] = ACTIONS(1122), [anon_sym_inline] = ACTIONS(1122), + [anon_sym_thread_local] = ACTIONS(1122), [anon_sym_const] = ACTIONS(1122), + [anon_sym_constexpr] = ACTIONS(1122), [anon_sym_volatile] = ACTIONS(1122), [anon_sym_restrict] = ACTIONS(1122), [anon_sym___restrict__] = ACTIONS(1122), [anon_sym__Atomic] = ACTIONS(1122), [anon_sym__Noreturn] = ACTIONS(1122), + [anon_sym_noreturn] = ACTIONS(1122), [anon_sym_signed] = ACTIONS(1122), [anon_sym_unsigned] = ACTIONS(1122), [anon_sym_long] = ACTIONS(1122), @@ -29757,6 +45261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1122), [anon_sym_union] = ACTIONS(1122), [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), [anon_sym_switch] = ACTIONS(1122), [anon_sym_case] = ACTIONS(1122), [anon_sym_default] = ACTIONS(1122), @@ -29778,268 +45283,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_L_SQUOTE] = ACTIONS(1124), [anon_sym_u_SQUOTE] = ACTIONS(1124), [anon_sym_U_SQUOTE] = ACTIONS(1124), - [anon_sym_u8_SQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_L_DQUOTE] = ACTIONS(1124), - [anon_sym_u_DQUOTE] = ACTIONS(1124), - [anon_sym_U_DQUOTE] = ACTIONS(1124), - [anon_sym_u8_DQUOTE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(311), - [sym_attributed_statement] = STATE(311), - [sym_labeled_statement] = STATE(311), - [sym_expression_statement] = STATE(311), - [sym_if_statement] = STATE(311), - [sym_switch_statement] = STATE(311), - [sym_case_statement] = STATE(311), - [sym_while_statement] = STATE(311), - [sym_do_statement] = STATE(311), - [sym_for_statement] = STATE(311), - [sym_return_statement] = STATE(311), - [sym_break_statement] = STATE(311), - [sym_continue_statement] = STATE(311), - [sym_goto_statement] = STATE(311), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [sym_identifier] = ACTIONS(1126), - [aux_sym_preproc_include_token1] = ACTIONS(1126), - [aux_sym_preproc_def_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token2] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), - [aux_sym_preproc_else_token1] = ACTIONS(1126), - [aux_sym_preproc_elif_token1] = ACTIONS(1126), - [sym_preproc_directive] = ACTIONS(1126), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1126), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), - [anon_sym___declspec] = ACTIONS(1126), - [anon_sym___cdecl] = ACTIONS(1126), - [anon_sym___clrcall] = ACTIONS(1126), - [anon_sym___stdcall] = ACTIONS(1126), - [anon_sym___fastcall] = ACTIONS(1126), - [anon_sym___thiscall] = ACTIONS(1126), - [anon_sym___vectorcall] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_auto] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym___restrict__] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym__Noreturn] = ACTIONS(1126), - [anon_sym_signed] = ACTIONS(1126), - [anon_sym_unsigned] = ACTIONS(1126), - [anon_sym_long] = ACTIONS(1126), - [anon_sym_short] = ACTIONS(1126), - [sym_primitive_type] = ACTIONS(1126), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_case] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_goto] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1126), - [anon_sym_offsetof] = ACTIONS(1126), - [anon_sym__Generic] = ACTIONS(1126), - [anon_sym_asm] = ACTIONS(1126), - [anon_sym___asm__] = ACTIONS(1126), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1128), - [anon_sym_u_SQUOTE] = ACTIONS(1128), - [anon_sym_U_SQUOTE] = ACTIONS(1128), - [anon_sym_u8_SQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_L_DQUOTE] = ACTIONS(1128), - [anon_sym_u_DQUOTE] = ACTIONS(1128), - [anon_sym_U_DQUOTE] = ACTIONS(1128), - [anon_sym_u8_DQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1126), - [sym_false] = ACTIONS(1126), - [sym_null] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_L_DQUOTE] = ACTIONS(1124), + [anon_sym_u_DQUOTE] = ACTIONS(1124), + [anon_sym_U_DQUOTE] = ACTIONS(1124), + [anon_sym_u8_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [sym_true] = ACTIONS(1122), + [sym_false] = ACTIONS(1122), + [anon_sym_NULL] = ACTIONS(1122), + [anon_sym_nullptr] = ACTIONS(1122), [sym_comment] = ACTIONS(3), }, - [155] = { + [298] = { [sym_identifier] = ACTIONS(1130), [aux_sym_preproc_include_token1] = ACTIONS(1130), [aux_sym_preproc_def_token1] = ACTIONS(1130), @@ -30047,8 +45304,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1130), [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), - [aux_sym_preproc_else_token1] = ACTIONS(1130), - [aux_sym_preproc_elif_token1] = ACTIONS(1130), [sym_preproc_directive] = ACTIONS(1130), [anon_sym_LPAREN2] = ACTIONS(1132), [anon_sym_BANG] = ACTIONS(1132), @@ -30074,12 +45329,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1130), [anon_sym_register] = ACTIONS(1130), [anon_sym_inline] = ACTIONS(1130), + [anon_sym_thread_local] = ACTIONS(1130), [anon_sym_const] = ACTIONS(1130), + [anon_sym_constexpr] = ACTIONS(1130), [anon_sym_volatile] = ACTIONS(1130), [anon_sym_restrict] = ACTIONS(1130), [anon_sym___restrict__] = ACTIONS(1130), [anon_sym__Atomic] = ACTIONS(1130), [anon_sym__Noreturn] = ACTIONS(1130), + [anon_sym_noreturn] = ACTIONS(1130), [anon_sym_signed] = ACTIONS(1130), [anon_sym_unsigned] = ACTIONS(1130), [anon_sym_long] = ACTIONS(1130), @@ -30089,6 +45347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1130), [anon_sym_union] = ACTIONS(1130), [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), [anon_sym_switch] = ACTIONS(1130), [anon_sym_case] = ACTIONS(1130), [anon_sym_default] = ACTIONS(1130), @@ -30119,93 +45378,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1132), [sym_true] = ACTIONS(1130), [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), + [anon_sym_NULL] = ACTIONS(1130), + [anon_sym_nullptr] = ACTIONS(1130), [sym_comment] = ACTIONS(3), }, - [156] = { - [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), - [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_typedef] = ACTIONS(1134), - [anon_sym_extern] = 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_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym_const] = 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_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1134), + [299] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), [sym_comment] = ACTIONS(3), }, - [157] = { + [300] = { + [sym_identifier] = ACTIONS(1078), + [aux_sym_preproc_include_token1] = ACTIONS(1078), + [aux_sym_preproc_def_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token1] = ACTIONS(1078), + [aux_sym_preproc_if_token2] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_LPAREN2] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym___attribute__] = ACTIONS(1078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym___declspec] = ACTIONS(1078), + [anon_sym___cdecl] = ACTIONS(1078), + [anon_sym___clrcall] = ACTIONS(1078), + [anon_sym___stdcall] = ACTIONS(1078), + [anon_sym___fastcall] = ACTIONS(1078), + [anon_sym___thiscall] = ACTIONS(1078), + [anon_sym___vectorcall] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_thread_local] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_constexpr] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym___restrict__] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym__Noreturn] = ACTIONS(1078), + [anon_sym_noreturn] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [anon_sym_offsetof] = ACTIONS(1078), + [anon_sym__Generic] = ACTIONS(1078), + [anon_sym_asm] = ACTIONS(1078), + [anon_sym___asm__] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [anon_sym_L_SQUOTE] = ACTIONS(1080), + [anon_sym_u_SQUOTE] = ACTIONS(1080), + [anon_sym_U_SQUOTE] = ACTIONS(1080), + [anon_sym_u8_SQUOTE] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_L_DQUOTE] = ACTIONS(1080), + [anon_sym_u_DQUOTE] = ACTIONS(1080), + [anon_sym_U_DQUOTE] = ACTIONS(1080), + [anon_sym_u8_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [anon_sym_NULL] = ACTIONS(1078), + [anon_sym_nullptr] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [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_typedef] = ACTIONS(1238), + [anon_sym_extern] = 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_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = 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), + }, + [302] = { + [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_typedef] = ACTIONS(1242), + [anon_sym_extern] = 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_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = 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), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_if_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), + [sym_preproc_directive] = ACTIONS(1246), + [anon_sym_LPAREN2] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_extern] = 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_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = 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), + }, + [304] = { [sym_identifier] = ACTIONS(1138), [aux_sym_preproc_include_token1] = ACTIONS(1138), [aux_sym_preproc_def_token1] = ACTIONS(1138), @@ -30213,8 +45820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), [sym_preproc_directive] = ACTIONS(1138), [anon_sym_LPAREN2] = ACTIONS(1140), [anon_sym_BANG] = ACTIONS(1140), @@ -30240,12 +45845,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1138), [anon_sym_register] = ACTIONS(1138), [anon_sym_inline] = ACTIONS(1138), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1138), [anon_sym_unsigned] = ACTIONS(1138), [anon_sym_long] = ACTIONS(1138), @@ -30255,6 +45863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -30285,1459 +45894,2458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1140), [sym_true] = ACTIONS(1138), [sym_false] = ACTIONS(1138), - [sym_null] = ACTIONS(1138), + [anon_sym_NULL] = ACTIONS(1138), + [anon_sym_nullptr] = ACTIONS(1138), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(1606), - [sym_attributed_statement] = STATE(1606), - [sym_labeled_statement] = STATE(1606), - [sym_expression_statement] = STATE(1606), - [sym_if_statement] = STATE(1606), - [sym_switch_statement] = STATE(1606), - [sym_case_statement] = STATE(1606), - [sym_while_statement] = STATE(1606), - [sym_do_statement] = STATE(1606), - [sym_for_statement] = STATE(1606), - [sym_return_statement] = STATE(1606), - [sym_break_statement] = STATE(1606), - [sym_continue_statement] = STATE(1606), - [sym_goto_statement] = STATE(1606), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [305] = { + [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_typedef] = ACTIONS(1142), + [anon_sym_extern] = 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_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = 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), }, - [159] = { - [sym_attribute_declaration] = STATE(159), - [sym_compound_statement] = STATE(325), - [sym_attributed_statement] = STATE(325), - [sym_labeled_statement] = STATE(325), - [sym_expression_statement] = STATE(325), - [sym_if_statement] = STATE(325), - [sym_switch_statement] = STATE(325), - [sym_case_statement] = STATE(325), - [sym_while_statement] = STATE(325), - [sym_do_statement] = STATE(325), - [sym_for_statement] = STATE(325), - [sym_return_statement] = STATE(325), - [sym_break_statement] = STATE(325), - [sym_continue_statement] = STATE(325), - [sym_goto_statement] = STATE(325), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [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(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), + [306] = { + [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_typedef] = ACTIONS(1170), + [anon_sym_extern] = 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_static] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(1170), + [anon_sym_register] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1170), + [anon_sym_unsigned] = ACTIONS(1170), + [anon_sym_long] = ACTIONS(1170), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1170), + [anon_sym_offsetof] = ACTIONS(1170), + [anon_sym__Generic] = 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), + }, + [307] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), + }, + [308] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), + }, + [309] = { + [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_typedef] = ACTIONS(1246), + [anon_sym_extern] = 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_static] = ACTIONS(1246), + [anon_sym_auto] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1246), + [anon_sym_unsigned] = ACTIONS(1246), + [anon_sym_long] = ACTIONS(1246), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_sizeof] = ACTIONS(1246), + [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym__Generic] = 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), + }, + [310] = { + [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_typedef] = ACTIONS(1242), + [anon_sym_extern] = 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_static] = ACTIONS(1242), + [anon_sym_auto] = ACTIONS(1242), + [anon_sym_register] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1242), + [anon_sym_unsigned] = ACTIONS(1242), + [anon_sym_long] = ACTIONS(1242), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_sizeof] = ACTIONS(1242), + [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym__Generic] = 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), + }, + [311] = { + [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_typedef] = ACTIONS(1238), + [anon_sym_extern] = 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_static] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym__Generic] = 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), + }, + [312] = { + [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_typedef] = ACTIONS(1234), + [anon_sym_extern] = 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_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym__Generic] = 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), + }, + [313] = { + [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_typedef] = ACTIONS(1230), + [anon_sym_extern] = 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_static] = ACTIONS(1230), + [anon_sym_auto] = ACTIONS(1230), + [anon_sym_register] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1230), + [anon_sym_unsigned] = ACTIONS(1230), + [anon_sym_long] = ACTIONS(1230), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_sizeof] = ACTIONS(1230), + [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym__Generic] = 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), + }, + [314] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), + }, + [315] = { + [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_typedef] = ACTIONS(1134), + [anon_sym_extern] = 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_static] = ACTIONS(1134), + [anon_sym_auto] = ACTIONS(1134), + [anon_sym_register] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1134), + [anon_sym_unsigned] = ACTIONS(1134), + [anon_sym_long] = ACTIONS(1134), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1134), + [anon_sym_offsetof] = ACTIONS(1134), + [anon_sym__Generic] = 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), }, - [160] = { - [sym_else_clause] = STATE(296), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), + [316] = { + [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_typedef] = ACTIONS(1226), + [anon_sym_extern] = 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_static] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_short] = 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(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [anon_sym_asm] = ACTIONS(914), - [anon_sym___asm__] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [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_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym__Generic] = 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), }, - [161] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(236), - [sym_attributed_statement] = STATE(236), - [sym_labeled_statement] = STATE(236), - [sym_expression_statement] = STATE(236), - [sym_if_statement] = STATE(236), - [sym_switch_statement] = STATE(236), - [sym_case_statement] = STATE(236), - [sym_while_statement] = STATE(236), - [sym_do_statement] = STATE(236), - [sym_for_statement] = STATE(236), - [sym_return_statement] = STATE(236), - [sym_break_statement] = STATE(236), - [sym_continue_statement] = STATE(236), - [sym_goto_statement] = STATE(236), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [317] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token1] = ACTIONS(1222), + [aux_sym_preproc_if_token2] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), + [sym_preproc_directive] = ACTIONS(1222), + [anon_sym_LPAREN2] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = 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_static] = ACTIONS(1222), + [anon_sym_auto] = ACTIONS(1222), + [anon_sym_register] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1222), + [anon_sym_unsigned] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_sizeof] = ACTIONS(1222), + [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym__Generic] = 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), }, - [162] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(235), - [sym_attributed_statement] = STATE(235), - [sym_labeled_statement] = STATE(235), - [sym_expression_statement] = STATE(235), - [sym_if_statement] = STATE(235), - [sym_switch_statement] = STATE(235), - [sym_case_statement] = STATE(235), - [sym_while_statement] = STATE(235), - [sym_do_statement] = STATE(235), - [sym_for_statement] = STATE(235), - [sym_return_statement] = STATE(235), - [sym_break_statement] = STATE(235), - [sym_continue_statement] = STATE(235), - [sym_goto_statement] = STATE(235), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [318] = { + [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_typedef] = ACTIONS(1218), + [anon_sym_extern] = 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_static] = ACTIONS(1218), + [anon_sym_auto] = ACTIONS(1218), + [anon_sym_register] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1218), + [anon_sym_unsigned] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_sizeof] = ACTIONS(1218), + [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym__Generic] = 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), }, - [163] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(68), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [319] = { + [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_typedef] = ACTIONS(1214), + [anon_sym_extern] = 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_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_sizeof] = ACTIONS(1214), + [anon_sym_offsetof] = ACTIONS(1214), + [anon_sym__Generic] = 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), }, - [164] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(1543), - [sym_attributed_statement] = STATE(1543), - [sym_labeled_statement] = STATE(1543), - [sym_expression_statement] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_case_statement] = STATE(1543), - [sym_while_statement] = STATE(1543), - [sym_do_statement] = STATE(1543), - [sym_for_statement] = STATE(1543), - [sym_return_statement] = STATE(1543), - [sym_break_statement] = STATE(1543), - [sym_continue_statement] = STATE(1543), - [sym_goto_statement] = STATE(1543), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [320] = { + [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_typedef] = ACTIONS(1210), + [anon_sym_extern] = 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_static] = ACTIONS(1210), + [anon_sym_auto] = ACTIONS(1210), + [anon_sym_register] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1210), + [anon_sym_unsigned] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1210), + [anon_sym__Generic] = ACTIONS(1210), + [anon_sym_asm] = ACTIONS(1210), + [anon_sym___asm__] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_L_SQUOTE] = ACTIONS(1212), + [anon_sym_u_SQUOTE] = ACTIONS(1212), + [anon_sym_U_SQUOTE] = ACTIONS(1212), + [anon_sym_u8_SQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_L_DQUOTE] = ACTIONS(1212), + [anon_sym_u_DQUOTE] = ACTIONS(1212), + [anon_sym_U_DQUOTE] = ACTIONS(1212), + [anon_sym_u8_DQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_NULL] = ACTIONS(1210), + [anon_sym_nullptr] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(285), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [321] = { + [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_typedef] = ACTIONS(1206), + [anon_sym_extern] = 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_static] = ACTIONS(1206), + [anon_sym_auto] = ACTIONS(1206), + [anon_sym_register] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1206), + [anon_sym_unsigned] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_sizeof] = ACTIONS(1206), + [anon_sym_offsetof] = ACTIONS(1206), + [anon_sym__Generic] = 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), }, - [166] = { - [sym_attribute_declaration] = STATE(166), - [sym_compound_statement] = STATE(295), - [sym_attributed_statement] = STATE(295), - [sym_labeled_statement] = STATE(295), - [sym_expression_statement] = STATE(295), - [sym_if_statement] = STATE(295), - [sym_switch_statement] = STATE(295), - [sym_case_statement] = STATE(295), - [sym_while_statement] = STATE(295), - [sym_do_statement] = STATE(295), - [sym_for_statement] = STATE(295), - [sym_return_statement] = STATE(295), - [sym_break_statement] = STATE(295), - [sym_continue_statement] = STATE(295), - [sym_goto_statement] = STATE(295), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(166), - [sym_identifier] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [322] = { + [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_typedef] = ACTIONS(1202), + [anon_sym_extern] = 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_static] = ACTIONS(1202), + [anon_sym_auto] = ACTIONS(1202), + [anon_sym_register] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1202), + [anon_sym_unsigned] = ACTIONS(1202), + [anon_sym_long] = ACTIONS(1202), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [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(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1202), + [anon_sym__Generic] = ACTIONS(1202), + [anon_sym_asm] = ACTIONS(1202), + [anon_sym___asm__] = ACTIONS(1202), + [sym_number_literal] = ACTIONS(1204), + [anon_sym_L_SQUOTE] = ACTIONS(1204), + [anon_sym_u_SQUOTE] = ACTIONS(1204), + [anon_sym_U_SQUOTE] = ACTIONS(1204), + [anon_sym_u8_SQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_L_DQUOTE] = ACTIONS(1204), + [anon_sym_u_DQUOTE] = ACTIONS(1204), + [anon_sym_U_DQUOTE] = ACTIONS(1204), + [anon_sym_u8_DQUOTE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [anon_sym_NULL] = ACTIONS(1202), + [anon_sym_nullptr] = ACTIONS(1202), [sym_comment] = ACTIONS(3), }, - [167] = { - [sym_identifier] = ACTIONS(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), - [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_typedef] = ACTIONS(1270), - [anon_sym_extern] = 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_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym_const] = 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_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = 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_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1270), + [323] = { + [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_typedef] = ACTIONS(1198), + [anon_sym_extern] = 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_static] = ACTIONS(1198), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1198), + [anon_sym_long] = ACTIONS(1198), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_sizeof] = ACTIONS(1198), + [anon_sym_offsetof] = ACTIONS(1198), + [anon_sym__Generic] = 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), }, - [168] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(324), - [sym_attributed_statement] = STATE(324), - [sym_labeled_statement] = STATE(324), - [sym_expression_statement] = STATE(324), - [sym_if_statement] = STATE(324), - [sym_switch_statement] = STATE(324), - [sym_case_statement] = STATE(324), - [sym_while_statement] = STATE(324), - [sym_do_statement] = STATE(324), - [sym_for_statement] = STATE(324), - [sym_return_statement] = STATE(324), - [sym_break_statement] = STATE(324), - [sym_continue_statement] = STATE(324), - [sym_goto_statement] = STATE(324), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [324] = { + [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_typedef] = ACTIONS(1194), + [anon_sym_extern] = 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_static] = ACTIONS(1194), + [anon_sym_auto] = ACTIONS(1194), + [anon_sym_register] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1194), + [anon_sym_unsigned] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_sizeof] = ACTIONS(1194), + [anon_sym_offsetof] = ACTIONS(1194), + [anon_sym__Generic] = 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), }, - [169] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(213), - [sym_attributed_statement] = STATE(213), - [sym_labeled_statement] = STATE(213), - [sym_expression_statement] = STATE(213), - [sym_if_statement] = STATE(213), - [sym_switch_statement] = STATE(213), - [sym_case_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_do_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_return_statement] = STATE(213), - [sym_break_statement] = STATE(213), - [sym_continue_statement] = STATE(213), - [sym_goto_statement] = STATE(213), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [325] = { + [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_typedef] = ACTIONS(1190), + [anon_sym_extern] = 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_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = 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), }, - [170] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(249), - [sym_attributed_statement] = STATE(249), - [sym_labeled_statement] = STATE(249), - [sym_expression_statement] = STATE(249), - [sym_if_statement] = STATE(249), - [sym_switch_statement] = STATE(249), - [sym_case_statement] = STATE(249), - [sym_while_statement] = STATE(249), - [sym_do_statement] = STATE(249), - [sym_for_statement] = STATE(249), - [sym_return_statement] = STATE(249), - [sym_break_statement] = STATE(249), - [sym_continue_statement] = STATE(249), - [sym_goto_statement] = STATE(249), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [326] = { + [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_typedef] = ACTIONS(1186), + [anon_sym_extern] = 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_static] = ACTIONS(1186), + [anon_sym_auto] = ACTIONS(1186), + [anon_sym_register] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1186), + [anon_sym_unsigned] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1186), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1186), + [anon_sym_offsetof] = ACTIONS(1186), + [anon_sym__Generic] = 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), }, - [171] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(160), - [sym_attributed_statement] = STATE(160), - [sym_labeled_statement] = STATE(160), - [sym_expression_statement] = STATE(160), - [sym_if_statement] = STATE(160), - [sym_switch_statement] = STATE(160), - [sym_case_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_do_statement] = STATE(160), - [sym_for_statement] = STATE(160), - [sym_return_statement] = STATE(160), - [sym_break_statement] = STATE(160), - [sym_continue_statement] = STATE(160), - [sym_goto_statement] = STATE(160), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [327] = { + [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_typedef] = ACTIONS(1142), + [anon_sym_extern] = 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_static] = ACTIONS(1142), + [anon_sym_auto] = ACTIONS(1142), + [anon_sym_register] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1142), + [anon_sym_unsigned] = ACTIONS(1142), + [anon_sym_long] = ACTIONS(1142), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1142), + [anon_sym_offsetof] = ACTIONS(1142), + [anon_sym__Generic] = 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), }, - [172] = { - [sym_attribute_declaration] = STATE(166), - [sym_compound_statement] = STATE(295), - [sym_attributed_statement] = STATE(295), - [sym_labeled_statement] = STATE(295), - [sym_expression_statement] = STATE(295), - [sym_if_statement] = STATE(295), - [sym_switch_statement] = STATE(295), - [sym_case_statement] = STATE(295), - [sym_while_statement] = STATE(295), - [sym_do_statement] = STATE(295), - [sym_for_statement] = STATE(295), - [sym_return_statement] = STATE(295), - [sym_break_statement] = STATE(295), - [sym_continue_statement] = STATE(295), - [sym_goto_statement] = STATE(295), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(166), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [328] = { + [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_typedef] = ACTIONS(1182), + [anon_sym_extern] = 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_static] = ACTIONS(1182), + [anon_sym_auto] = ACTIONS(1182), + [anon_sym_register] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1182), + [anon_sym_unsigned] = ACTIONS(1182), + [anon_sym_long] = ACTIONS(1182), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_sizeof] = ACTIONS(1182), + [anon_sym_offsetof] = ACTIONS(1182), + [anon_sym__Generic] = 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), + }, + [329] = { + [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_typedef] = ACTIONS(1178), + [anon_sym_extern] = 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_static] = ACTIONS(1178), + [anon_sym_auto] = ACTIONS(1178), + [anon_sym_register] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1178), + [anon_sym_unsigned] = ACTIONS(1178), + [anon_sym_long] = ACTIONS(1178), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_sizeof] = ACTIONS(1178), + [anon_sym_offsetof] = ACTIONS(1178), + [anon_sym__Generic] = 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), }, - [173] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(79), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_case_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [330] = { + [sym_identifier] = ACTIONS(1082), + [aux_sym_preproc_include_token1] = ACTIONS(1082), + [aux_sym_preproc_def_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token1] = ACTIONS(1082), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym___attribute__] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1084), + [anon_sym___declspec] = ACTIONS(1082), + [anon_sym___cdecl] = ACTIONS(1082), + [anon_sym___clrcall] = ACTIONS(1082), + [anon_sym___stdcall] = ACTIONS(1082), + [anon_sym___fastcall] = ACTIONS(1082), + [anon_sym___thiscall] = ACTIONS(1082), + [anon_sym___vectorcall] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_thread_local] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_constexpr] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym___restrict__] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym__Noreturn] = ACTIONS(1082), + [anon_sym_noreturn] = ACTIONS(1082), + [anon_sym_signed] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [anon_sym_offsetof] = ACTIONS(1082), + [anon_sym__Generic] = ACTIONS(1082), + [anon_sym_asm] = ACTIONS(1082), + [anon_sym___asm__] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_L_SQUOTE] = ACTIONS(1084), + [anon_sym_u_SQUOTE] = ACTIONS(1084), + [anon_sym_U_SQUOTE] = ACTIONS(1084), + [anon_sym_u8_SQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_L_DQUOTE] = ACTIONS(1084), + [anon_sym_u_DQUOTE] = ACTIONS(1084), + [anon_sym_U_DQUOTE] = ACTIONS(1084), + [anon_sym_u8_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [anon_sym_NULL] = ACTIONS(1082), + [anon_sym_nullptr] = ACTIONS(1082), [sym_comment] = ACTIONS(3), }, - [174] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(91), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_case_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [331] = { + [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_typedef] = ACTIONS(1166), + [anon_sym_extern] = 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_static] = ACTIONS(1166), + [anon_sym_auto] = ACTIONS(1166), + [anon_sym_register] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1166), + [anon_sym_unsigned] = ACTIONS(1166), + [anon_sym_long] = ACTIONS(1166), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_sizeof] = ACTIONS(1166), + [anon_sym_offsetof] = ACTIONS(1166), + [anon_sym__Generic] = 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), }, - [175] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(87), - [sym_attributed_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_case_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [332] = { + [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_typedef] = ACTIONS(1162), + [anon_sym_extern] = 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_static] = ACTIONS(1162), + [anon_sym_auto] = ACTIONS(1162), + [anon_sym_register] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1162), + [anon_sym_unsigned] = ACTIONS(1162), + [anon_sym_long] = ACTIONS(1162), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_sizeof] = ACTIONS(1162), + [anon_sym_offsetof] = ACTIONS(1162), + [anon_sym__Generic] = 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), + }, + [333] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [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__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31745,20 +48353,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31779,48 +48387,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [176] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), + [334] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(138), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_case_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31828,20 +48438,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31862,463 +48472,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [177] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1274), - [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1274), - [anon_sym_extern] = 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_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym_const] = 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_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = 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_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1274), + [335] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [178] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(234), - [sym_attributed_statement] = STATE(234), - [sym_labeled_statement] = STATE(234), - [sym_expression_statement] = STATE(234), - [sym_if_statement] = STATE(234), - [sym_switch_statement] = STATE(234), - [sym_case_statement] = STATE(234), - [sym_while_statement] = STATE(234), - [sym_do_statement] = STATE(234), - [sym_for_statement] = STATE(234), - [sym_return_statement] = STATE(234), - [sym_break_statement] = STATE(234), - [sym_continue_statement] = STATE(234), - [sym_goto_statement] = STATE(234), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [336] = { + [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_typedef] = ACTIONS(1286), + [anon_sym_extern] = 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_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = 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_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = 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), }, - [179] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(326), - [sym_attributed_statement] = STATE(326), - [sym_labeled_statement] = STATE(326), - [sym_expression_statement] = STATE(326), - [sym_if_statement] = STATE(326), - [sym_switch_statement] = STATE(326), - [sym_case_statement] = STATE(326), - [sym_while_statement] = STATE(326), - [sym_do_statement] = STATE(326), - [sym_for_statement] = STATE(326), - [sym_return_statement] = STATE(326), - [sym_break_statement] = STATE(326), - [sym_continue_statement] = STATE(326), - [sym_goto_statement] = STATE(326), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [337] = { + [sym_attribute_declaration] = STATE(337), + [sym_compound_statement] = STATE(217), + [sym_attributed_statement] = STATE(217), + [sym_labeled_statement] = STATE(217), + [sym_expression_statement] = STATE(217), + [sym_if_statement] = STATE(217), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_do_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_return_statement] = STATE(217), + [sym_break_statement] = STATE(217), + [sym_continue_statement] = STATE(217), + [sym_goto_statement] = STATE(217), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1423), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym___asm__] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1435), + [anon_sym_u_SQUOTE] = ACTIONS(1435), + [anon_sym_U_SQUOTE] = ACTIONS(1435), + [anon_sym_u8_SQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [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(1441), + [sym_false] = ACTIONS(1441), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [180] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(76), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_case_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_offsetof] = ACTIONS(83), - [anon_sym__Generic] = ACTIONS(85), - [anon_sym_asm] = ACTIONS(87), - [anon_sym___asm__] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [338] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1447), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1459), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1423), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym___asm__] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1435), + [anon_sym_u_SQUOTE] = ACTIONS(1435), + [anon_sym_U_SQUOTE] = ACTIONS(1435), + [anon_sym_u8_SQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [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(1441), + [sym_false] = ACTIONS(1441), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [181] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1278), - [aux_sym_preproc_elif_token1] = 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_typedef] = ACTIONS(1278), - [anon_sym_extern] = 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_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym_const] = 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_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = 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_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1278), + [339] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), + [340] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(94), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_case_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32326,20 +48948,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32360,48 +48982,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(73), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [341] = { + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32409,20 +49118,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32443,131 +49152,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_attribute_declaration] = STATE(184), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1291), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [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(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(89), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [343] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(84), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32575,20 +49203,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32609,48 +49237,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(104), - [sym_attributed_statement] = STATE(104), - [sym_labeled_statement] = STATE(104), - [sym_expression_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_switch_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_while_statement] = STATE(104), - [sym_do_statement] = STATE(104), - [sym_for_statement] = STATE(104), - [sym_return_statement] = STATE(104), - [sym_break_statement] = STATE(104), - [sym_continue_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [344] = { + [sym_attribute_declaration] = STATE(337), + [sym_compound_statement] = STATE(217), + [sym_attributed_statement] = STATE(217), + [sym_labeled_statement] = STATE(217), + [sym_expression_statement] = STATE(217), + [sym_if_statement] = STATE(217), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_do_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_return_statement] = STATE(217), + [sym_break_statement] = STATE(217), + [sym_continue_statement] = STATE(217), + [sym_goto_statement] = STATE(217), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(1491), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32658,20 +49288,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32692,214 +49322,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [187] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [aux_sym_preproc_else_token1] = ACTIONS(1324), - [aux_sym_preproc_elif_token1] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [sym_null] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [sym_else_clause] = STATE(282), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [anon_sym_asm] = ACTIONS(914), - [anon_sym___asm__] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(230), - [sym_attributed_statement] = STATE(230), - [sym_labeled_statement] = STATE(230), - [sym_expression_statement] = STATE(230), - [sym_if_statement] = STATE(230), - [sym_switch_statement] = STATE(230), - [sym_case_statement] = STATE(230), - [sym_while_statement] = STATE(230), - [sym_do_statement] = STATE(230), - [sym_for_statement] = STATE(230), - [sym_return_statement] = STATE(230), - [sym_break_statement] = STATE(230), - [sym_continue_statement] = STATE(230), - [sym_goto_statement] = STATE(230), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), + [345] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(272), + [sym_attributed_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_case_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_goto_statement] = STATE(272), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32907,20 +49373,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32941,48 +49407,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [190] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(88), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [346] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32990,20 +49458,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33024,48 +49492,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(71), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [347] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(273), + [sym_attributed_statement] = STATE(273), + [sym_labeled_statement] = STATE(273), + [sym_expression_statement] = STATE(273), + [sym_if_statement] = STATE(273), + [sym_switch_statement] = STATE(273), + [sym_case_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_do_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [sym_return_statement] = STATE(273), + [sym_break_statement] = STATE(273), + [sym_continue_statement] = STATE(273), + [sym_goto_statement] = STATE(273), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33073,20 +49543,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33107,48 +49577,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(241), - [sym_attributed_statement] = STATE(241), - [sym_labeled_statement] = STATE(241), - [sym_expression_statement] = STATE(241), - [sym_if_statement] = STATE(241), - [sym_switch_statement] = STATE(241), - [sym_case_statement] = STATE(241), - [sym_while_statement] = STATE(241), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(241), - [sym_return_statement] = STATE(241), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(241), - [sym_goto_statement] = STATE(241), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1084), + [348] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(274), + [sym_attributed_statement] = STATE(274), + [sym_labeled_statement] = STATE(274), + [sym_expression_statement] = STATE(274), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(274), + [sym_case_statement] = STATE(274), + [sym_while_statement] = STATE(274), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(274), + [sym_return_statement] = STATE(274), + [sym_break_statement] = STATE(274), + [sym_continue_statement] = STATE(274), + [sym_goto_statement] = STATE(274), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33156,20 +49628,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33190,48 +49662,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(229), - [sym_attributed_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), + [349] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(214), + [sym_attributed_statement] = STATE(214), + [sym_labeled_statement] = STATE(214), + [sym_expression_statement] = STATE(214), + [sym_if_statement] = STATE(214), + [sym_switch_statement] = STATE(214), + [sym_case_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_do_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_return_statement] = STATE(214), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(214), + [sym_goto_statement] = STATE(214), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33239,20 +49713,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33273,48 +49747,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(98), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_case_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [350] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33322,20 +49798,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33356,48 +49832,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(228), - [sym_attributed_statement] = STATE(228), - [sym_labeled_statement] = STATE(228), - [sym_expression_statement] = STATE(228), - [sym_if_statement] = STATE(228), - [sym_switch_statement] = STATE(228), - [sym_case_statement] = STATE(228), - [sym_while_statement] = STATE(228), - [sym_do_statement] = STATE(228), - [sym_for_statement] = STATE(228), - [sym_return_statement] = STATE(228), - [sym_break_statement] = STATE(228), - [sym_continue_statement] = STATE(228), - [sym_goto_statement] = STATE(228), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), + [351] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(276), + [sym_attributed_statement] = STATE(276), + [sym_labeled_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_if_statement] = STATE(276), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_break_statement] = STATE(276), + [sym_continue_statement] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33405,20 +49883,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33439,214 +49917,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [sym_else_clause] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(916), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym_offsetof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [anon_sym_asm] = ACTIONS(914), - [anon_sym___asm__] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [aux_sym_preproc_else_token1] = ACTIONS(1332), - [aux_sym_preproc_elif_token1] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_null] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(84), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_case_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [352] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(181), + [sym_attributed_statement] = STATE(181), + [sym_labeled_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_switch_statement] = STATE(181), + [sym_case_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33654,20 +49968,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33688,214 +50002,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(241), - [sym_attributed_statement] = STATE(241), - [sym_labeled_statement] = STATE(241), - [sym_expression_statement] = STATE(241), - [sym_if_statement] = STATE(241), - [sym_switch_statement] = STATE(241), - [sym_case_statement] = STATE(241), - [sym_while_statement] = STATE(241), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(241), - [sym_return_statement] = STATE(241), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(241), - [sym_goto_statement] = STATE(241), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1202), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [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(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_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), - [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_typedef] = ACTIONS(1378), - [anon_sym_extern] = 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_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_const] = 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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = 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(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_attribute_declaration] = STATE(117), - [sym_compound_statement] = STATE(75), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_case_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1557), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1088), + [353] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33903,20 +50053,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_case] = ACTIONS(127), - [anon_sym_default] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_do] = ACTIONS(133), - [anon_sym_for] = ACTIONS(135), - [anon_sym_return] = ACTIONS(137), - [anon_sym_break] = ACTIONS(139), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_goto] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33937,48 +50087,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [202] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(188), - [sym_attributed_statement] = STATE(188), - [sym_labeled_statement] = STATE(188), - [sym_expression_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(188), - [sym_return_statement] = STATE(188), - [sym_break_statement] = STATE(188), - [sym_continue_statement] = STATE(188), - [sym_goto_statement] = STATE(188), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), + [354] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33986,20 +50138,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34020,131 +50172,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_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), - [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_typedef] = ACTIONS(1382), - [anon_sym_extern] = 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_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_const] = 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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(264), - [sym_attributed_statement] = STATE(264), - [sym_labeled_statement] = STATE(264), - [sym_expression_statement] = STATE(264), - [sym_if_statement] = STATE(264), - [sym_switch_statement] = STATE(264), - [sym_case_statement] = STATE(264), - [sym_while_statement] = STATE(264), - [sym_do_statement] = STATE(264), - [sym_for_statement] = STATE(264), - [sym_return_statement] = STATE(264), - [sym_break_statement] = STATE(264), - [sym_continue_statement] = STATE(264), - [sym_goto_statement] = STATE(264), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), + [355] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34152,20 +50223,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34186,94 +50257,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_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), - [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_typedef] = ACTIONS(1386), - [anon_sym_extern] = 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_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_const] = 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_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_attribute_declaration] = STATE(172), + [356] = { + [sym_attribute_declaration] = STATE(489), [sym_compound_statement] = STATE(220), [sym_attributed_statement] = STATE(220), [sym_labeled_statement] = STATE(220), @@ -34288,29 +50277,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(220), [sym_continue_statement] = STATE(220), [sym_goto_statement] = STATE(220), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34318,20 +50308,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34352,48 +50342,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(222), - [sym_attributed_statement] = STATE(222), - [sym_labeled_statement] = STATE(222), - [sym_expression_statement] = STATE(222), - [sym_if_statement] = STATE(222), - [sym_switch_statement] = STATE(222), - [sym_case_statement] = STATE(222), - [sym_while_statement] = STATE(222), - [sym_do_statement] = STATE(222), - [sym_for_statement] = STATE(222), - [sym_return_statement] = STATE(222), - [sym_break_statement] = STATE(222), - [sym_continue_statement] = STATE(222), - [sym_goto_statement] = STATE(222), - [sym__expression] = STATE(790), - [sym_comma_expression] = STATE(1422), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1084), + [357] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(149), + [sym_attributed_statement] = STATE(149), + [sym_labeled_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym_if_statement] = STATE(149), + [sym_switch_statement] = STATE(149), + [sym_case_statement] = STATE(149), + [sym_while_statement] = STATE(149), + [sym_do_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym_return_statement] = STATE(149), + [sym_break_statement] = STATE(149), + [sym_continue_statement] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34401,20 +50393,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(453), - [anon_sym_while] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34435,48 +50427,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(1585), - [sym_attributed_statement] = STATE(1585), - [sym_labeled_statement] = STATE(1585), - [sym_expression_statement] = STATE(1585), - [sym_if_statement] = STATE(1585), - [sym_switch_statement] = STATE(1585), - [sym_case_statement] = STATE(1585), - [sym_while_statement] = STATE(1585), - [sym_do_statement] = STATE(1585), - [sym_for_statement] = STATE(1585), - [sym_return_statement] = STATE(1585), - [sym_break_statement] = STATE(1585), - [sym_continue_statement] = STATE(1585), - [sym_goto_statement] = STATE(1585), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), + [358] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34484,20 +50478,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [359] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34518,48 +50597,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(218), - [sym_attributed_statement] = STATE(218), - [sym_labeled_statement] = STATE(218), - [sym_expression_statement] = STATE(218), - [sym_if_statement] = STATE(218), - [sym_switch_statement] = STATE(218), - [sym_case_statement] = STATE(218), - [sym_while_statement] = STATE(218), - [sym_do_statement] = STATE(218), - [sym_for_statement] = STATE(218), - [sym_return_statement] = STATE(218), - [sym_break_statement] = STATE(218), - [sym_continue_statement] = STATE(218), - [sym_goto_statement] = STATE(218), - [sym__expression] = STATE(822), - [sym_comma_expression] = STATE(1413), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1090), + [360] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34567,20 +50648,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_goto] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34601,48 +50682,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_attribute_declaration] = STATE(133), - [sym_compound_statement] = STATE(1597), - [sym_attributed_statement] = STATE(1597), - [sym_labeled_statement] = STATE(1597), - [sym_expression_statement] = STATE(1597), - [sym_if_statement] = STATE(1597), - [sym_switch_statement] = STATE(1597), - [sym_case_statement] = STATE(1597), - [sym_while_statement] = STATE(1597), - [sym_do_statement] = STATE(1597), - [sym_for_statement] = STATE(1597), - [sym_return_statement] = STATE(1597), - [sym_break_statement] = STATE(1597), - [sym_continue_statement] = STATE(1597), - [sym_goto_statement] = STATE(1597), - [sym__expression] = STATE(796), - [sym_comma_expression] = STATE(1582), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [aux_sym_attributed_declarator_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1096), + [361] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(169), + [sym_attributed_statement] = STATE(169), + [sym_labeled_statement] = STATE(169), + [sym_expression_statement] = STATE(169), + [sym_if_statement] = STATE(169), + [sym_switch_statement] = STATE(169), + [sym_case_statement] = STATE(169), + [sym_while_statement] = STATE(169), + [sym_do_statement] = STATE(169), + [sym_for_statement] = STATE(169), + [sym_return_statement] = STATE(169), + [sym_break_statement] = STATE(169), + [sym_continue_statement] = STATE(169), + [sym_goto_statement] = STATE(169), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34650,20 +50733,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34684,11309 +50767,2561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_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), - [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_typedef] = ACTIONS(1390), - [anon_sym_extern] = 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_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_const] = 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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym___restrict__] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym__Noreturn] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [anon_sym_offsetof] = ACTIONS(976), - [anon_sym__Generic] = ACTIONS(976), - [anon_sym_asm] = ACTIONS(976), - [anon_sym___asm__] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [anon_sym_asm] = ACTIONS(956), - [anon_sym___asm__] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym___asm__] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [anon_sym_asm] = ACTIONS(1040), - [anon_sym___asm__] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_else] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym_offsetof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [anon_sym_asm] = ACTIONS(1080), - [anon_sym___asm__] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_if_token2] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [anon_sym_asm] = ACTIONS(992), - [anon_sym___asm__] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_if_token2] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [anon_sym_asm] = ACTIONS(988), - [anon_sym___asm__] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_if_token2] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [anon_sym_asm] = ACTIONS(928), - [anon_sym___asm__] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [anon_sym_asm] = ACTIONS(944), - [anon_sym___asm__] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [anon_sym_asm] = ACTIONS(952), - [anon_sym___asm__] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym___asm__] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [anon_sym_asm] = ACTIONS(960), - [anon_sym___asm__] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [anon_sym_asm] = ACTIONS(956), - [anon_sym___asm__] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_if_token2] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym___restrict__] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym__Noreturn] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_offsetof] = ACTIONS(980), - [anon_sym__Generic] = ACTIONS(980), - [anon_sym_asm] = ACTIONS(980), - [anon_sym___asm__] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [anon_sym_asm] = ACTIONS(964), - [anon_sym___asm__] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym___restrict__] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym__Noreturn] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_offsetof] = ACTIONS(968), - [anon_sym__Generic] = ACTIONS(968), - [anon_sym_asm] = ACTIONS(968), - [anon_sym___asm__] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [anon_sym_asm] = ACTIONS(940), - [anon_sym___asm__] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_if_token2] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym___restrict__] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym__Noreturn] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [anon_sym_offsetof] = ACTIONS(976), - [anon_sym__Generic] = ACTIONS(976), - [anon_sym_asm] = ACTIONS(976), - [anon_sym___asm__] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), - [sym_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token2] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym_offsetof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1024), - [anon_sym___asm__] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [anon_sym_asm] = ACTIONS(1016), - [anon_sym___asm__] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [anon_sym_asm] = ACTIONS(1012), - [anon_sym___asm__] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym___asm__] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [240] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_if_token2] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym___asm__] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [anon_sym_asm] = ACTIONS(1008), - [anon_sym___asm__] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_if_token2] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym___restrict__] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym__Noreturn] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [anon_sym_offsetof] = ACTIONS(972), - [anon_sym__Generic] = ACTIONS(972), - [anon_sym_asm] = ACTIONS(972), - [anon_sym___asm__] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym___asm__] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym___asm__] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [anon_sym_asm] = ACTIONS(1028), - [anon_sym___asm__] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym___asm__] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [anon_sym_asm] = ACTIONS(964), - [anon_sym___asm__] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym___restrict__] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym__Noreturn] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [anon_sym_offsetof] = ACTIONS(956), - [anon_sym__Generic] = ACTIONS(956), - [anon_sym_asm] = ACTIONS(956), - [anon_sym___asm__] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [anon_sym_asm] = ACTIONS(1028), - [anon_sym___asm__] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [anon_sym_asm] = ACTIONS(984), - [anon_sym___asm__] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - }, - [252] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [anon_sym_asm] = ACTIONS(920), - [anon_sym___asm__] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym___asm__] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [anon_sym_asm] = ACTIONS(952), - [anon_sym___asm__] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [256] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_if_token2] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [anon_sym_asm] = ACTIONS(996), - [anon_sym___asm__] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [257] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym___asm__] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [259] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [anon_sym_asm] = ACTIONS(1012), - [anon_sym___asm__] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [260] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_else] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym_offsetof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [anon_sym_asm] = ACTIONS(1080), - [anon_sym___asm__] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [anon_sym_asm] = ACTIONS(944), - [anon_sym___asm__] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_comment] = ACTIONS(3), - }, - [263] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token2] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [anon_sym_asm] = ACTIONS(1016), - [anon_sym___asm__] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(998), - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [anon_sym_asm] = ACTIONS(996), - [anon_sym___asm__] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [anon_sym_asm] = ACTIONS(984), - [anon_sym___asm__] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - }, - [266] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [anon_sym_asm] = ACTIONS(992), - [anon_sym___asm__] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_comment] = ACTIONS(3), - }, - [267] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [anon_sym_asm] = ACTIONS(988), - [anon_sym___asm__] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), - [sym_comment] = ACTIONS(3), - }, - [268] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [anon_sym_asm] = ACTIONS(928), - [anon_sym___asm__] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [269] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [anon_sym_asm] = ACTIONS(960), - [anon_sym___asm__] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [270] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token2] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_else] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym_offsetof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [anon_sym_asm] = ACTIONS(1080), - [anon_sym___asm__] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [271] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym___asm__] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [anon_sym_asm] = ACTIONS(1040), - [anon_sym___asm__] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [274] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [276] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym___asm__] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [277] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym___restrict__] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym__Noreturn] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_offsetof] = ACTIONS(980), - [anon_sym__Generic] = ACTIONS(980), - [anon_sym_asm] = ACTIONS(980), - [anon_sym___asm__] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - }, - [278] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym_offsetof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [anon_sym_asm] = ACTIONS(1064), - [anon_sym___asm__] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [281] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [anon_sym_asm] = ACTIONS(940), - [anon_sym___asm__] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym_offsetof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [anon_sym_asm] = ACTIONS(1064), - [anon_sym___asm__] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym___restrict__] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym__Noreturn] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [anon_sym_offsetof] = ACTIONS(920), - [anon_sym__Generic] = ACTIONS(920), - [anon_sym_asm] = ACTIONS(920), - [anon_sym___asm__] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(994), - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym___restrict__] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym__Noreturn] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [anon_sym_offsetof] = ACTIONS(992), - [anon_sym__Generic] = ACTIONS(992), - [anon_sym_asm] = ACTIONS(992), - [anon_sym___asm__] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_comment] = ACTIONS(3), - }, - [286] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [287] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [288] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym_offsetof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [anon_sym_asm] = ACTIONS(1036), - [anon_sym___asm__] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [289] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_offsetof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [anon_sym_asm] = ACTIONS(1028), - [anon_sym___asm__] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - }, - [290] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym_offsetof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [anon_sym_asm] = ACTIONS(1020), - [anon_sym___asm__] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym_offsetof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [anon_sym_asm] = ACTIONS(1060), - [anon_sym___asm__] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym_offsetof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1024), - [anon_sym___asm__] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [anon_sym_asm] = ACTIONS(1008), - [anon_sym___asm__] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [294] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token2] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym___asm__] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token2] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym_offsetof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [anon_sym_asm] = ACTIONS(1064), - [anon_sym___asm__] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [297] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym___restrict__] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym__Noreturn] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [anon_sym_offsetof] = ACTIONS(988), - [anon_sym__Generic] = ACTIONS(988), - [anon_sym_asm] = ACTIONS(988), - [anon_sym___asm__] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), - [sym_comment] = ACTIONS(3), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym___restrict__] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym__Noreturn] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [anon_sym_offsetof] = ACTIONS(928), - [anon_sym__Generic] = ACTIONS(928), - [anon_sym_asm] = ACTIONS(928), - [anon_sym___asm__] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(962), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym___restrict__] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym__Noreturn] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [anon_sym_offsetof] = ACTIONS(960), - [anon_sym__Generic] = ACTIONS(960), - [anon_sym_asm] = ACTIONS(960), - [anon_sym___asm__] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(982), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym___restrict__] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym__Noreturn] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_offsetof] = ACTIONS(980), - [anon_sym__Generic] = ACTIONS(980), - [anon_sym_asm] = ACTIONS(980), - [anon_sym___asm__] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - }, - [302] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym___restrict__] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym__Noreturn] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [anon_sym_offsetof] = ACTIONS(972), - [anon_sym__Generic] = ACTIONS(972), - [anon_sym_asm] = ACTIONS(972), - [anon_sym___asm__] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [304] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_if_token2] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [305] = { - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym___restrict__] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym__Noreturn] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [anon_sym_offsetof] = ACTIONS(972), - [anon_sym__Generic] = ACTIONS(972), - [anon_sym_asm] = ACTIONS(972), - [anon_sym___asm__] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym___restrict__] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym__Noreturn] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [anon_sym_offsetof] = ACTIONS(936), - [anon_sym__Generic] = ACTIONS(936), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [307] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_offsetof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [anon_sym_asm] = ACTIONS(1056), - [anon_sym___asm__] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym___restrict__] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym__Noreturn] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_offsetof] = ACTIONS(984), - [anon_sym__Generic] = ACTIONS(984), - [anon_sym_asm] = ACTIONS(984), - [anon_sym___asm__] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym_offsetof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [anon_sym_asm] = ACTIONS(1048), - [anon_sym___asm__] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [sym_comment] = ACTIONS(3), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym___restrict__] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym__Noreturn] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [anon_sym_offsetof] = ACTIONS(924), - [anon_sym__Generic] = ACTIONS(924), - [anon_sym_asm] = ACTIONS(924), - [anon_sym___asm__] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [311] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym___restrict__] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym__Noreturn] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [anon_sym_offsetof] = ACTIONS(996), - [anon_sym__Generic] = ACTIONS(996), - [anon_sym_asm] = ACTIONS(996), - [anon_sym___asm__] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym_offsetof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1024), - [anon_sym___asm__] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym___restrict__] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym__Noreturn] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [anon_sym_offsetof] = ACTIONS(976), - [anon_sym__Generic] = ACTIONS(976), - [anon_sym_asm] = ACTIONS(976), - [anon_sym___asm__] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym_offsetof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [anon_sym_asm] = ACTIONS(1004), - [anon_sym___asm__] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym___restrict__] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym__Noreturn] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [anon_sym_offsetof] = ACTIONS(940), - [anon_sym__Generic] = ACTIONS(940), - [anon_sym_asm] = ACTIONS(940), - [anon_sym___asm__] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [316] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_offsetof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [anon_sym_asm] = ACTIONS(1052), - [anon_sym___asm__] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [317] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym___restrict__] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym__Noreturn] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_offsetof] = ACTIONS(968), - [anon_sym__Generic] = ACTIONS(968), - [anon_sym_asm] = ACTIONS(968), - [anon_sym___asm__] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - }, - [318] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [anon_sym_asm] = ACTIONS(1012), - [anon_sym___asm__] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [319] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym_offsetof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym___asm__] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [320] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_if_token2] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [anon_sym_offsetof] = ACTIONS(964), - [anon_sym__Generic] = ACTIONS(964), - [anon_sym_asm] = ACTIONS(964), - [anon_sym___asm__] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [anon_sym_asm] = ACTIONS(1008), - [anon_sym___asm__] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [322] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym_offsetof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [anon_sym_asm] = ACTIONS(1016), - [anon_sym___asm__] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [323] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_if_token2] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym___restrict__] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym__Noreturn] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(932), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [324] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym___restrict__] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym__Noreturn] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [anon_sym_offsetof] = ACTIONS(944), - [anon_sym__Generic] = ACTIONS(944), - [anon_sym_asm] = ACTIONS(944), - [anon_sym___asm__] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [362] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym___restrict__] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym__Noreturn] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [anon_sym_offsetof] = ACTIONS(1000), - [anon_sym__Generic] = ACTIONS(1000), - [anon_sym_asm] = ACTIONS(1000), - [anon_sym___asm__] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [363] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(222), + [sym_attributed_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_switch_statement] = STATE(222), + [sym_case_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_goto_statement] = STATE(222), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym_offsetof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [anon_sym_asm] = ACTIONS(1040), - [anon_sym___asm__] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [364] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [anon_sym_asm] = ACTIONS(1032), - [anon_sym___asm__] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [365] = { + [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_if_token2] = 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_typedef] = ACTIONS(1266), + [anon_sym_extern] = 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_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = 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_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = 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), }, - [328] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym___restrict__] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym__Noreturn] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [anon_sym_offsetof] = ACTIONS(952), - [anon_sym__Generic] = ACTIONS(952), - [anon_sym_asm] = ACTIONS(952), - [anon_sym___asm__] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [366] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym___restrict__] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym__Noreturn] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [anon_sym_offsetof] = ACTIONS(948), - [anon_sym__Generic] = ACTIONS(948), - [anon_sym_asm] = ACTIONS(948), - [anon_sym___asm__] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [367] = { + [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_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_typedef] = ACTIONS(1294), + [anon_sym_extern] = 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_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = 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), }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1126), - [aux_sym_preproc_include_token1] = ACTIONS(1126), - [aux_sym_preproc_def_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), - [sym_preproc_directive] = ACTIONS(1126), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1126), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), - [anon_sym___declspec] = ACTIONS(1126), - [anon_sym___cdecl] = ACTIONS(1126), - [anon_sym___clrcall] = ACTIONS(1126), - [anon_sym___stdcall] = ACTIONS(1126), - [anon_sym___fastcall] = ACTIONS(1126), - [anon_sym___thiscall] = ACTIONS(1126), - [anon_sym___vectorcall] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_auto] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym___restrict__] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym__Noreturn] = ACTIONS(1126), - [anon_sym_signed] = ACTIONS(1126), - [anon_sym_unsigned] = ACTIONS(1126), - [anon_sym_long] = ACTIONS(1126), - [anon_sym_short] = ACTIONS(1126), - [sym_primitive_type] = ACTIONS(1126), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_case] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_goto] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1126), - [anon_sym_offsetof] = ACTIONS(1126), - [anon_sym__Generic] = ACTIONS(1126), - [anon_sym_asm] = ACTIONS(1126), - [anon_sym___asm__] = ACTIONS(1126), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1128), - [anon_sym_u_SQUOTE] = ACTIONS(1128), - [anon_sym_U_SQUOTE] = ACTIONS(1128), - [anon_sym_u8_SQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_L_DQUOTE] = ACTIONS(1128), - [anon_sym_u_DQUOTE] = ACTIONS(1128), - [anon_sym_U_DQUOTE] = ACTIONS(1128), - [anon_sym_u8_DQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1126), - [sym_false] = ACTIONS(1126), - [sym_null] = ACTIONS(1126), + [368] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_identifier] = ACTIONS(1102), - [aux_sym_preproc_include_token1] = ACTIONS(1102), - [aux_sym_preproc_def_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token2] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_LPAREN2] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym___attribute__] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), - [anon_sym___declspec] = ACTIONS(1102), - [anon_sym___cdecl] = ACTIONS(1102), - [anon_sym___clrcall] = ACTIONS(1102), - [anon_sym___stdcall] = ACTIONS(1102), - [anon_sym___fastcall] = ACTIONS(1102), - [anon_sym___thiscall] = ACTIONS(1102), - [anon_sym___vectorcall] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym___restrict__] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym__Noreturn] = ACTIONS(1102), - [anon_sym_signed] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [anon_sym_offsetof] = ACTIONS(1102), - [anon_sym__Generic] = ACTIONS(1102), - [anon_sym_asm] = ACTIONS(1102), - [anon_sym___asm__] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_L_SQUOTE] = ACTIONS(1104), - [anon_sym_u_SQUOTE] = ACTIONS(1104), - [anon_sym_U_SQUOTE] = ACTIONS(1104), - [anon_sym_u8_SQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_L_DQUOTE] = ACTIONS(1104), - [anon_sym_u_DQUOTE] = ACTIONS(1104), - [anon_sym_U_DQUOTE] = ACTIONS(1104), - [anon_sym_u8_DQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), + [369] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(224), + [sym_attributed_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_case_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1122), - [aux_sym_preproc_include_token1] = ACTIONS(1122), - [aux_sym_preproc_def_token1] = ACTIONS(1122), - [aux_sym_preproc_if_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), - [sym_preproc_directive] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1122), - [anon_sym_extern] = ACTIONS(1122), - [anon_sym___attribute__] = ACTIONS(1122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), - [anon_sym___declspec] = ACTIONS(1122), - [anon_sym___cdecl] = ACTIONS(1122), - [anon_sym___clrcall] = ACTIONS(1122), - [anon_sym___stdcall] = ACTIONS(1122), - [anon_sym___fastcall] = ACTIONS(1122), - [anon_sym___thiscall] = ACTIONS(1122), - [anon_sym___vectorcall] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1122), - [anon_sym_auto] = ACTIONS(1122), - [anon_sym_register] = ACTIONS(1122), - [anon_sym_inline] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_volatile] = ACTIONS(1122), - [anon_sym_restrict] = ACTIONS(1122), - [anon_sym___restrict__] = ACTIONS(1122), - [anon_sym__Atomic] = ACTIONS(1122), - [anon_sym__Noreturn] = ACTIONS(1122), - [anon_sym_signed] = ACTIONS(1122), - [anon_sym_unsigned] = ACTIONS(1122), - [anon_sym_long] = ACTIONS(1122), - [anon_sym_short] = ACTIONS(1122), - [sym_primitive_type] = ACTIONS(1122), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_struct] = ACTIONS(1122), - [anon_sym_union] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1122), - [anon_sym_default] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_goto] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_sizeof] = ACTIONS(1122), - [anon_sym_offsetof] = ACTIONS(1122), - [anon_sym__Generic] = ACTIONS(1122), - [anon_sym_asm] = ACTIONS(1122), - [anon_sym___asm__] = ACTIONS(1122), - [sym_number_literal] = ACTIONS(1124), - [anon_sym_L_SQUOTE] = ACTIONS(1124), - [anon_sym_u_SQUOTE] = ACTIONS(1124), - [anon_sym_U_SQUOTE] = ACTIONS(1124), - [anon_sym_u8_SQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_L_DQUOTE] = ACTIONS(1124), - [anon_sym_u_DQUOTE] = ACTIONS(1124), - [anon_sym_U_DQUOTE] = ACTIONS(1124), - [anon_sym_u8_DQUOTE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), + [370] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(225), + [sym_attributed_statement] = STATE(225), + [sym_labeled_statement] = STATE(225), + [sym_expression_statement] = STATE(225), + [sym_if_statement] = STATE(225), + [sym_switch_statement] = STATE(225), + [sym_case_statement] = STATE(225), + [sym_while_statement] = STATE(225), + [sym_do_statement] = STATE(225), + [sym_for_statement] = STATE(225), + [sym_return_statement] = STATE(225), + [sym_break_statement] = STATE(225), + [sym_continue_statement] = STATE(225), + [sym_goto_statement] = STATE(225), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1100), - [sym_identifier] = ACTIONS(1098), - [aux_sym_preproc_include_token1] = ACTIONS(1098), - [aux_sym_preproc_def_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), - [sym_preproc_directive] = ACTIONS(1098), - [anon_sym_LPAREN2] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym___attribute__] = ACTIONS(1098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym___declspec] = ACTIONS(1098), - [anon_sym___cdecl] = ACTIONS(1098), - [anon_sym___clrcall] = ACTIONS(1098), - [anon_sym___stdcall] = ACTIONS(1098), - [anon_sym___fastcall] = ACTIONS(1098), - [anon_sym___thiscall] = ACTIONS(1098), - [anon_sym___vectorcall] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_auto] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_inline] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_volatile] = ACTIONS(1098), - [anon_sym_restrict] = ACTIONS(1098), - [anon_sym___restrict__] = ACTIONS(1098), - [anon_sym__Atomic] = ACTIONS(1098), - [anon_sym__Noreturn] = ACTIONS(1098), - [anon_sym_signed] = ACTIONS(1098), - [anon_sym_unsigned] = ACTIONS(1098), - [anon_sym_long] = ACTIONS(1098), - [anon_sym_short] = ACTIONS(1098), - [sym_primitive_type] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_goto] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_sizeof] = ACTIONS(1098), - [anon_sym_offsetof] = ACTIONS(1098), - [anon_sym__Generic] = ACTIONS(1098), - [anon_sym_asm] = ACTIONS(1098), - [anon_sym___asm__] = ACTIONS(1098), - [sym_number_literal] = ACTIONS(1100), - [anon_sym_L_SQUOTE] = ACTIONS(1100), - [anon_sym_u_SQUOTE] = ACTIONS(1100), - [anon_sym_U_SQUOTE] = ACTIONS(1100), - [anon_sym_u8_SQUOTE] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_L_DQUOTE] = ACTIONS(1100), - [anon_sym_u_DQUOTE] = ACTIONS(1100), - [anon_sym_U_DQUOTE] = ACTIONS(1100), - [anon_sym_u8_DQUOTE] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_true] = ACTIONS(1098), - [sym_false] = ACTIONS(1098), - [sym_null] = ACTIONS(1098), + [371] = { + [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_typedef] = ACTIONS(1254), + [anon_sym_extern] = 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_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = 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), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1104), - [sym_identifier] = ACTIONS(1102), - [aux_sym_preproc_include_token1] = ACTIONS(1102), - [aux_sym_preproc_def_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_LPAREN2] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym___attribute__] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), - [anon_sym___declspec] = ACTIONS(1102), - [anon_sym___cdecl] = ACTIONS(1102), - [anon_sym___clrcall] = ACTIONS(1102), - [anon_sym___stdcall] = ACTIONS(1102), - [anon_sym___fastcall] = ACTIONS(1102), - [anon_sym___thiscall] = ACTIONS(1102), - [anon_sym___vectorcall] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym___restrict__] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym__Noreturn] = ACTIONS(1102), - [anon_sym_signed] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [anon_sym_offsetof] = ACTIONS(1102), - [anon_sym__Generic] = ACTIONS(1102), - [anon_sym_asm] = ACTIONS(1102), - [anon_sym___asm__] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_L_SQUOTE] = ACTIONS(1104), - [anon_sym_u_SQUOTE] = ACTIONS(1104), - [anon_sym_U_SQUOTE] = ACTIONS(1104), - [anon_sym_u8_SQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_L_DQUOTE] = ACTIONS(1104), - [anon_sym_u_DQUOTE] = ACTIONS(1104), - [anon_sym_U_DQUOTE] = ACTIONS(1104), - [anon_sym_u8_DQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), + [372] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [335] = { - [sym_identifier] = ACTIONS(1114), - [aux_sym_preproc_include_token1] = ACTIONS(1114), - [aux_sym_preproc_def_token1] = ACTIONS(1114), - [aux_sym_preproc_if_token1] = ACTIONS(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [sym_preproc_directive] = ACTIONS(1114), - [anon_sym_LPAREN2] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_TILDE] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_SEMI] = ACTIONS(1116), - [anon_sym_typedef] = ACTIONS(1114), - [anon_sym_extern] = ACTIONS(1114), - [anon_sym___attribute__] = ACTIONS(1114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), - [anon_sym___declspec] = ACTIONS(1114), - [anon_sym___cdecl] = ACTIONS(1114), - [anon_sym___clrcall] = ACTIONS(1114), - [anon_sym___stdcall] = ACTIONS(1114), - [anon_sym___fastcall] = ACTIONS(1114), - [anon_sym___thiscall] = ACTIONS(1114), - [anon_sym___vectorcall] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_RBRACE] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_auto] = ACTIONS(1114), - [anon_sym_register] = ACTIONS(1114), - [anon_sym_inline] = ACTIONS(1114), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_volatile] = ACTIONS(1114), - [anon_sym_restrict] = ACTIONS(1114), - [anon_sym___restrict__] = ACTIONS(1114), - [anon_sym__Atomic] = ACTIONS(1114), - [anon_sym__Noreturn] = ACTIONS(1114), - [anon_sym_signed] = ACTIONS(1114), - [anon_sym_unsigned] = ACTIONS(1114), - [anon_sym_long] = ACTIONS(1114), - [anon_sym_short] = ACTIONS(1114), - [sym_primitive_type] = ACTIONS(1114), - [anon_sym_enum] = ACTIONS(1114), - [anon_sym_struct] = ACTIONS(1114), - [anon_sym_union] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1114), - [anon_sym_switch] = ACTIONS(1114), - [anon_sym_case] = ACTIONS(1114), - [anon_sym_default] = ACTIONS(1114), - [anon_sym_while] = ACTIONS(1114), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1114), - [anon_sym_break] = ACTIONS(1114), - [anon_sym_continue] = ACTIONS(1114), - [anon_sym_goto] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(1116), - [anon_sym_PLUS_PLUS] = ACTIONS(1116), - [anon_sym_sizeof] = ACTIONS(1114), - [anon_sym_offsetof] = ACTIONS(1114), - [anon_sym__Generic] = ACTIONS(1114), - [anon_sym_asm] = ACTIONS(1114), - [anon_sym___asm__] = ACTIONS(1114), - [sym_number_literal] = ACTIONS(1116), - [anon_sym_L_SQUOTE] = ACTIONS(1116), - [anon_sym_u_SQUOTE] = ACTIONS(1116), - [anon_sym_U_SQUOTE] = ACTIONS(1116), - [anon_sym_u8_SQUOTE] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_L_DQUOTE] = ACTIONS(1116), - [anon_sym_u_DQUOTE] = ACTIONS(1116), - [anon_sym_U_DQUOTE] = ACTIONS(1116), - [anon_sym_u8_DQUOTE] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), + [373] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(226), + [sym_attributed_statement] = STATE(226), + [sym_labeled_statement] = STATE(226), + [sym_expression_statement] = STATE(226), + [sym_if_statement] = STATE(226), + [sym_switch_statement] = STATE(226), + [sym_case_statement] = STATE(226), + [sym_while_statement] = STATE(226), + [sym_do_statement] = STATE(226), + [sym_for_statement] = STATE(226), + [sym_return_statement] = STATE(226), + [sym_break_statement] = STATE(226), + [sym_continue_statement] = STATE(226), + [sym_goto_statement] = STATE(226), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [336] = { - [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_typedef] = ACTIONS(1274), - [anon_sym_extern] = 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_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym_const] = 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_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = 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_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1274), + [374] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(227), + [sym_attributed_statement] = STATE(227), + [sym_labeled_statement] = STATE(227), + [sym_expression_statement] = STATE(227), + [sym_if_statement] = STATE(227), + [sym_switch_statement] = STATE(227), + [sym_case_statement] = STATE(227), + [sym_while_statement] = STATE(227), + [sym_do_statement] = STATE(227), + [sym_for_statement] = STATE(227), + [sym_return_statement] = STATE(227), + [sym_break_statement] = STATE(227), + [sym_continue_statement] = STATE(227), + [sym_goto_statement] = STATE(227), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_identifier] = ACTIONS(1118), - [aux_sym_preproc_include_token1] = ACTIONS(1118), - [aux_sym_preproc_def_token1] = ACTIONS(1118), - [aux_sym_preproc_if_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), - [sym_preproc_directive] = ACTIONS(1118), - [anon_sym_LPAREN2] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_typedef] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1118), - [anon_sym___attribute__] = ACTIONS(1118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), - [anon_sym___declspec] = ACTIONS(1118), - [anon_sym___cdecl] = ACTIONS(1118), - [anon_sym___clrcall] = ACTIONS(1118), - [anon_sym___stdcall] = ACTIONS(1118), - [anon_sym___fastcall] = ACTIONS(1118), - [anon_sym___thiscall] = ACTIONS(1118), - [anon_sym___vectorcall] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_RBRACE] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_auto] = ACTIONS(1118), - [anon_sym_register] = ACTIONS(1118), - [anon_sym_inline] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_volatile] = ACTIONS(1118), - [anon_sym_restrict] = ACTIONS(1118), - [anon_sym___restrict__] = ACTIONS(1118), - [anon_sym__Atomic] = ACTIONS(1118), - [anon_sym__Noreturn] = ACTIONS(1118), - [anon_sym_signed] = ACTIONS(1118), - [anon_sym_unsigned] = ACTIONS(1118), - [anon_sym_long] = ACTIONS(1118), - [anon_sym_short] = ACTIONS(1118), - [sym_primitive_type] = ACTIONS(1118), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_struct] = ACTIONS(1118), - [anon_sym_union] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_case] = ACTIONS(1118), - [anon_sym_default] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_goto] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1120), - [anon_sym_sizeof] = ACTIONS(1118), - [anon_sym_offsetof] = ACTIONS(1118), - [anon_sym__Generic] = ACTIONS(1118), - [anon_sym_asm] = ACTIONS(1118), - [anon_sym___asm__] = ACTIONS(1118), - [sym_number_literal] = ACTIONS(1120), - [anon_sym_L_SQUOTE] = ACTIONS(1120), - [anon_sym_u_SQUOTE] = ACTIONS(1120), - [anon_sym_U_SQUOTE] = ACTIONS(1120), - [anon_sym_u8_SQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_L_DQUOTE] = ACTIONS(1120), - [anon_sym_u_DQUOTE] = ACTIONS(1120), - [anon_sym_U_DQUOTE] = ACTIONS(1120), - [anon_sym_u8_DQUOTE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), + [375] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [sym_preproc_directive] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = 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_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = 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), }, - [338] = { - [sym_identifier] = ACTIONS(1126), - [aux_sym_preproc_include_token1] = ACTIONS(1126), - [aux_sym_preproc_def_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token2] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), - [sym_preproc_directive] = ACTIONS(1126), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1126), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), - [anon_sym___declspec] = ACTIONS(1126), - [anon_sym___cdecl] = ACTIONS(1126), - [anon_sym___clrcall] = ACTIONS(1126), - [anon_sym___stdcall] = ACTIONS(1126), - [anon_sym___fastcall] = ACTIONS(1126), - [anon_sym___thiscall] = ACTIONS(1126), - [anon_sym___vectorcall] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_auto] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym___restrict__] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym__Noreturn] = ACTIONS(1126), - [anon_sym_signed] = ACTIONS(1126), - [anon_sym_unsigned] = ACTIONS(1126), - [anon_sym_long] = ACTIONS(1126), - [anon_sym_short] = ACTIONS(1126), - [sym_primitive_type] = ACTIONS(1126), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_case] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_goto] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1126), - [anon_sym_offsetof] = ACTIONS(1126), - [anon_sym__Generic] = ACTIONS(1126), - [anon_sym_asm] = ACTIONS(1126), - [anon_sym___asm__] = ACTIONS(1126), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1128), - [anon_sym_u_SQUOTE] = ACTIONS(1128), - [anon_sym_U_SQUOTE] = ACTIONS(1128), - [anon_sym_u8_SQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_L_DQUOTE] = ACTIONS(1128), - [anon_sym_u_DQUOTE] = ACTIONS(1128), - [anon_sym_U_DQUOTE] = ACTIONS(1128), - [anon_sym_u8_DQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1126), - [sym_false] = ACTIONS(1126), - [sym_null] = ACTIONS(1126), + [376] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(165), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym_if_statement] = STATE(165), + [sym_switch_statement] = STATE(165), + [sym_case_statement] = STATE(165), + [sym_while_statement] = STATE(165), + [sym_do_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym_return_statement] = STATE(165), + [sym_break_statement] = STATE(165), + [sym_continue_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [aux_sym_preproc_if_token2] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_LPAREN2] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), - [anon_sym___declspec] = ACTIONS(1110), - [anon_sym___cdecl] = ACTIONS(1110), - [anon_sym___clrcall] = ACTIONS(1110), - [anon_sym___stdcall] = ACTIONS(1110), - [anon_sym___fastcall] = ACTIONS(1110), - [anon_sym___thiscall] = ACTIONS(1110), - [anon_sym___vectorcall] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [anon_sym___restrict__] = ACTIONS(1110), - [anon_sym__Atomic] = ACTIONS(1110), - [anon_sym__Noreturn] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(1110), - [anon_sym_default] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_sizeof] = ACTIONS(1110), - [anon_sym_offsetof] = ACTIONS(1110), - [anon_sym__Generic] = ACTIONS(1110), - [anon_sym_asm] = ACTIONS(1110), - [anon_sym___asm__] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym_u_SQUOTE] = ACTIONS(1112), - [anon_sym_U_SQUOTE] = ACTIONS(1112), - [anon_sym_u8_SQUOTE] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_u_DQUOTE] = ACTIONS(1112), - [anon_sym_U_DQUOTE] = ACTIONS(1112), - [anon_sym_u8_DQUOTE] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1112), - [sym_true] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), + [377] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(157), + [sym_attributed_statement] = STATE(157), + [sym_labeled_statement] = STATE(157), + [sym_expression_statement] = STATE(157), + [sym_if_statement] = STATE(157), + [sym_switch_statement] = STATE(157), + [sym_case_statement] = STATE(157), + [sym_while_statement] = STATE(157), + [sym_do_statement] = STATE(157), + [sym_for_statement] = STATE(157), + [sym_return_statement] = STATE(157), + [sym_break_statement] = STATE(157), + [sym_continue_statement] = STATE(157), + [sym_goto_statement] = STATE(157), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1114), - [aux_sym_preproc_include_token1] = ACTIONS(1114), - [aux_sym_preproc_def_token1] = ACTIONS(1114), - [aux_sym_preproc_if_token1] = ACTIONS(1114), - [aux_sym_preproc_if_token2] = ACTIONS(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [sym_preproc_directive] = ACTIONS(1114), - [anon_sym_LPAREN2] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_TILDE] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_SEMI] = ACTIONS(1116), - [anon_sym_typedef] = ACTIONS(1114), - [anon_sym_extern] = ACTIONS(1114), - [anon_sym___attribute__] = ACTIONS(1114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), - [anon_sym___declspec] = ACTIONS(1114), - [anon_sym___cdecl] = ACTIONS(1114), - [anon_sym___clrcall] = ACTIONS(1114), - [anon_sym___stdcall] = ACTIONS(1114), - [anon_sym___fastcall] = ACTIONS(1114), - [anon_sym___thiscall] = ACTIONS(1114), - [anon_sym___vectorcall] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_auto] = ACTIONS(1114), - [anon_sym_register] = ACTIONS(1114), - [anon_sym_inline] = ACTIONS(1114), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_volatile] = ACTIONS(1114), - [anon_sym_restrict] = ACTIONS(1114), - [anon_sym___restrict__] = ACTIONS(1114), - [anon_sym__Atomic] = ACTIONS(1114), - [anon_sym__Noreturn] = ACTIONS(1114), - [anon_sym_signed] = ACTIONS(1114), - [anon_sym_unsigned] = ACTIONS(1114), - [anon_sym_long] = ACTIONS(1114), - [anon_sym_short] = ACTIONS(1114), - [sym_primitive_type] = ACTIONS(1114), - [anon_sym_enum] = ACTIONS(1114), - [anon_sym_struct] = ACTIONS(1114), - [anon_sym_union] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1114), - [anon_sym_switch] = ACTIONS(1114), - [anon_sym_case] = ACTIONS(1114), - [anon_sym_default] = ACTIONS(1114), - [anon_sym_while] = ACTIONS(1114), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1114), - [anon_sym_break] = ACTIONS(1114), - [anon_sym_continue] = ACTIONS(1114), - [anon_sym_goto] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(1116), - [anon_sym_PLUS_PLUS] = ACTIONS(1116), - [anon_sym_sizeof] = ACTIONS(1114), - [anon_sym_offsetof] = ACTIONS(1114), - [anon_sym__Generic] = ACTIONS(1114), - [anon_sym_asm] = ACTIONS(1114), - [anon_sym___asm__] = ACTIONS(1114), - [sym_number_literal] = ACTIONS(1116), - [anon_sym_L_SQUOTE] = ACTIONS(1116), - [anon_sym_u_SQUOTE] = ACTIONS(1116), - [anon_sym_U_SQUOTE] = ACTIONS(1116), - [anon_sym_u8_SQUOTE] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_L_DQUOTE] = ACTIONS(1116), - [anon_sym_u_DQUOTE] = ACTIONS(1116), - [anon_sym_U_DQUOTE] = ACTIONS(1116), - [anon_sym_u8_DQUOTE] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), + [378] = { + [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_typedef] = ACTIONS(1278), + [anon_sym_extern] = 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_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = 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_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = 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), + }, + [379] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [380] = { + [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_typedef] = ACTIONS(1286), + [anon_sym_extern] = 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_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = 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_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = 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), + }, + [381] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(271), + [sym_attributed_statement] = STATE(271), + [sym_labeled_statement] = STATE(271), + [sym_expression_statement] = STATE(271), + [sym_if_statement] = STATE(271), + [sym_switch_statement] = STATE(271), + [sym_case_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_do_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_return_statement] = STATE(271), + [sym_break_statement] = STATE(271), + [sym_continue_statement] = STATE(271), + [sym_goto_statement] = STATE(271), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [341] = { - [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_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_typedef] = ACTIONS(1378), - [anon_sym_extern] = 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_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_const] = 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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = 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(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1378), + [382] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(156), + [sym_attributed_statement] = STATE(156), + [sym_labeled_statement] = STATE(156), + [sym_expression_statement] = STATE(156), + [sym_if_statement] = STATE(156), + [sym_switch_statement] = STATE(156), + [sym_case_statement] = STATE(156), + [sym_while_statement] = STATE(156), + [sym_do_statement] = STATE(156), + [sym_for_statement] = STATE(156), + [sym_return_statement] = STATE(156), + [sym_break_statement] = STATE(156), + [sym_continue_statement] = STATE(156), + [sym_goto_statement] = STATE(156), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_LPAREN2] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), - [anon_sym___declspec] = ACTIONS(1110), - [anon_sym___cdecl] = ACTIONS(1110), - [anon_sym___clrcall] = ACTIONS(1110), - [anon_sym___stdcall] = ACTIONS(1110), - [anon_sym___fastcall] = ACTIONS(1110), - [anon_sym___thiscall] = ACTIONS(1110), - [anon_sym___vectorcall] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [anon_sym___restrict__] = ACTIONS(1110), - [anon_sym__Atomic] = ACTIONS(1110), - [anon_sym__Noreturn] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(1110), - [anon_sym_default] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_sizeof] = ACTIONS(1110), - [anon_sym_offsetof] = ACTIONS(1110), - [anon_sym__Generic] = ACTIONS(1110), - [anon_sym_asm] = ACTIONS(1110), - [anon_sym___asm__] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym_u_SQUOTE] = ACTIONS(1112), - [anon_sym_U_SQUOTE] = ACTIONS(1112), - [anon_sym_u8_SQUOTE] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_u_DQUOTE] = ACTIONS(1112), - [anon_sym_U_DQUOTE] = ACTIONS(1112), - [anon_sym_u8_DQUOTE] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1112), - [sym_true] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), + [383] = { + [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_typedef] = ACTIONS(1278), + [anon_sym_extern] = 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_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = 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_offsetof] = ACTIONS(1278), + [anon_sym__Generic] = 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), }, - [343] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1382), - [anon_sym_extern] = 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_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_const] = 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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1382), + [384] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [344] = { - [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_typedef] = ACTIONS(1274), - [anon_sym_extern] = 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_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym_const] = 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_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = 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_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1274), + [385] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(230), + [sym_attributed_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_identifier] = ACTIONS(1098), - [aux_sym_preproc_include_token1] = ACTIONS(1098), - [aux_sym_preproc_def_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), - [sym_preproc_directive] = ACTIONS(1098), - [anon_sym_LPAREN2] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym___attribute__] = ACTIONS(1098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym___declspec] = ACTIONS(1098), - [anon_sym___cdecl] = ACTIONS(1098), - [anon_sym___clrcall] = ACTIONS(1098), - [anon_sym___stdcall] = ACTIONS(1098), - [anon_sym___fastcall] = ACTIONS(1098), - [anon_sym___thiscall] = ACTIONS(1098), - [anon_sym___vectorcall] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_auto] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_inline] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_volatile] = ACTIONS(1098), - [anon_sym_restrict] = ACTIONS(1098), - [anon_sym___restrict__] = ACTIONS(1098), - [anon_sym__Atomic] = ACTIONS(1098), - [anon_sym__Noreturn] = ACTIONS(1098), - [anon_sym_signed] = ACTIONS(1098), - [anon_sym_unsigned] = ACTIONS(1098), - [anon_sym_long] = ACTIONS(1098), - [anon_sym_short] = ACTIONS(1098), - [sym_primitive_type] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_goto] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_sizeof] = ACTIONS(1098), - [anon_sym_offsetof] = ACTIONS(1098), - [anon_sym__Generic] = ACTIONS(1098), - [anon_sym_asm] = ACTIONS(1098), - [anon_sym___asm__] = ACTIONS(1098), - [sym_number_literal] = ACTIONS(1100), - [anon_sym_L_SQUOTE] = ACTIONS(1100), - [anon_sym_u_SQUOTE] = ACTIONS(1100), - [anon_sym_U_SQUOTE] = ACTIONS(1100), - [anon_sym_u8_SQUOTE] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_L_DQUOTE] = ACTIONS(1100), - [anon_sym_u_DQUOTE] = ACTIONS(1100), - [anon_sym_U_DQUOTE] = ACTIONS(1100), - [anon_sym_u8_DQUOTE] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_true] = ACTIONS(1098), - [sym_false] = ACTIONS(1098), - [sym_null] = ACTIONS(1098), + [386] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(270), + [sym_attributed_statement] = STATE(270), + [sym_labeled_statement] = STATE(270), + [sym_expression_statement] = STATE(270), + [sym_if_statement] = STATE(270), + [sym_switch_statement] = STATE(270), + [sym_case_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_do_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_return_statement] = STATE(270), + [sym_break_statement] = STATE(270), + [sym_continue_statement] = STATE(270), + [sym_goto_statement] = STATE(270), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [346] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_null] = ACTIONS(1332), + [387] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(332), + [sym_attributed_statement] = STATE(332), + [sym_labeled_statement] = STATE(332), + [sym_expression_statement] = STATE(332), + [sym_if_statement] = STATE(332), + [sym_switch_statement] = STATE(332), + [sym_case_statement] = STATE(332), + [sym_while_statement] = STATE(332), + [sym_do_statement] = STATE(332), + [sym_for_statement] = STATE(332), + [sym_return_statement] = STATE(332), + [sym_break_statement] = STATE(332), + [sym_continue_statement] = STATE(332), + [sym_goto_statement] = STATE(332), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token2] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym_offsetof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [anon_sym_asm] = ACTIONS(1092), - [anon_sym___asm__] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [388] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [389] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [390] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(155), + [sym_attributed_statement] = STATE(155), + [sym_labeled_statement] = STATE(155), + [sym_expression_statement] = STATE(155), + [sym_if_statement] = STATE(155), + [sym_switch_statement] = STATE(155), + [sym_case_statement] = STATE(155), + [sym_while_statement] = STATE(155), + [sym_do_statement] = STATE(155), + [sym_for_statement] = STATE(155), + [sym_return_statement] = STATE(155), + [sym_break_statement] = STATE(155), + [sym_continue_statement] = STATE(155), + [sym_goto_statement] = STATE(155), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym_offsetof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [anon_sym_asm] = ACTIONS(1092), - [anon_sym___asm__] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [391] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(269), + [sym_attributed_statement] = STATE(269), + [sym_labeled_statement] = STATE(269), + [sym_expression_statement] = STATE(269), + [sym_if_statement] = STATE(269), + [sym_switch_statement] = STATE(269), + [sym_case_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_do_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_return_statement] = STATE(269), + [sym_break_statement] = STATE(269), + [sym_continue_statement] = STATE(269), + [sym_goto_statement] = STATE(269), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1276), + [392] = { [sym_identifier] = ACTIONS(1274), [aux_sym_preproc_include_token1] = ACTIONS(1274), [aux_sym_preproc_def_token1] = ACTIONS(1274), @@ -46014,16 +53349,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1274), [anon_sym___vectorcall] = ACTIONS(1274), [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), [anon_sym_static] = ACTIONS(1274), [anon_sym_auto] = ACTIONS(1274), [anon_sym_register] = ACTIONS(1274), [anon_sym_inline] = ACTIONS(1274), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1274), [anon_sym_unsigned] = ACTIONS(1274), [anon_sym_long] = ACTIONS(1274), @@ -46063,1068 +53402,1205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1276), [sym_true] = ACTIONS(1274), [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - }, - [350] = { - [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_typedef] = ACTIONS(1270), - [anon_sym_extern] = 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_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym_const] = 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_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = 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_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1132), - [sym_identifier] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), - [anon_sym___declspec] = ACTIONS(1130), - [anon_sym___cdecl] = ACTIONS(1130), - [anon_sym___clrcall] = ACTIONS(1130), - [anon_sym___stdcall] = ACTIONS(1130), - [anon_sym___fastcall] = ACTIONS(1130), - [anon_sym___thiscall] = ACTIONS(1130), - [anon_sym___vectorcall] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_auto] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1130), - [anon_sym_const] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1130), - [anon_sym_restrict] = ACTIONS(1130), - [anon_sym___restrict__] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1130), - [anon_sym__Noreturn] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1130), - [anon_sym_unsigned] = ACTIONS(1130), - [anon_sym_long] = ACTIONS(1130), - [anon_sym_short] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_switch] = ACTIONS(1130), - [anon_sym_case] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [anon_sym_do] = ACTIONS(1130), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_goto] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(1130), - [anon_sym__Generic] = ACTIONS(1130), - [anon_sym_asm] = ACTIONS(1130), - [anon_sym___asm__] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1132), - [anon_sym_L_SQUOTE] = ACTIONS(1132), - [anon_sym_u_SQUOTE] = ACTIONS(1132), - [anon_sym_U_SQUOTE] = ACTIONS(1132), - [anon_sym_u8_SQUOTE] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [anon_sym_L_DQUOTE] = ACTIONS(1132), - [anon_sym_u_DQUOTE] = ACTIONS(1132), - [anon_sym_U_DQUOTE] = ACTIONS(1132), - [anon_sym_u8_DQUOTE] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1132), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [sym_comment] = ACTIONS(3), - }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [sym_null] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [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_typedef] = ACTIONS(1270), - [anon_sym_extern] = 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_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym_const] = 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_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = 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_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1118), - [aux_sym_preproc_include_token1] = ACTIONS(1118), - [aux_sym_preproc_def_token1] = ACTIONS(1118), - [aux_sym_preproc_if_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), - [sym_preproc_directive] = ACTIONS(1118), - [anon_sym_LPAREN2] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_typedef] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1118), - [anon_sym___attribute__] = ACTIONS(1118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), - [anon_sym___declspec] = ACTIONS(1118), - [anon_sym___cdecl] = ACTIONS(1118), - [anon_sym___clrcall] = ACTIONS(1118), - [anon_sym___stdcall] = ACTIONS(1118), - [anon_sym___fastcall] = ACTIONS(1118), - [anon_sym___thiscall] = ACTIONS(1118), - [anon_sym___vectorcall] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_auto] = ACTIONS(1118), - [anon_sym_register] = ACTIONS(1118), - [anon_sym_inline] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_volatile] = ACTIONS(1118), - [anon_sym_restrict] = ACTIONS(1118), - [anon_sym___restrict__] = ACTIONS(1118), - [anon_sym__Atomic] = ACTIONS(1118), - [anon_sym__Noreturn] = ACTIONS(1118), - [anon_sym_signed] = ACTIONS(1118), - [anon_sym_unsigned] = ACTIONS(1118), - [anon_sym_long] = ACTIONS(1118), - [anon_sym_short] = ACTIONS(1118), - [sym_primitive_type] = ACTIONS(1118), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_struct] = ACTIONS(1118), - [anon_sym_union] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_case] = ACTIONS(1118), - [anon_sym_default] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_goto] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1120), - [anon_sym_sizeof] = ACTIONS(1118), - [anon_sym_offsetof] = ACTIONS(1118), - [anon_sym__Generic] = ACTIONS(1118), - [anon_sym_asm] = ACTIONS(1118), - [anon_sym___asm__] = ACTIONS(1118), - [sym_number_literal] = ACTIONS(1120), - [anon_sym_L_SQUOTE] = ACTIONS(1120), - [anon_sym_u_SQUOTE] = ACTIONS(1120), - [anon_sym_U_SQUOTE] = ACTIONS(1120), - [anon_sym_u8_SQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_L_DQUOTE] = ACTIONS(1120), - [anon_sym_u_DQUOTE] = ACTIONS(1120), - [anon_sym_U_DQUOTE] = ACTIONS(1120), - [anon_sym_u8_DQUOTE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), + [393] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(292), + [sym_attributed_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1390), - [anon_sym_extern] = 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_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_const] = 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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1390), + [394] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(1845), + [sym_attributed_statement] = STATE(1845), + [sym_labeled_statement] = STATE(1845), + [sym_expression_statement] = STATE(1845), + [sym_if_statement] = STATE(1845), + [sym_switch_statement] = STATE(1845), + [sym_case_statement] = STATE(1845), + [sym_while_statement] = STATE(1845), + [sym_do_statement] = STATE(1845), + [sym_for_statement] = STATE(1845), + [sym_return_statement] = STATE(1845), + [sym_break_statement] = STATE(1845), + [sym_continue_statement] = STATE(1845), + [sym_goto_statement] = STATE(1845), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1386), - [anon_sym_extern] = 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_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_const] = 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_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1386), + [395] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(331), + [sym_attributed_statement] = STATE(331), + [sym_labeled_statement] = STATE(331), + [sym_expression_statement] = STATE(331), + [sym_if_statement] = STATE(331), + [sym_switch_statement] = STATE(331), + [sym_case_statement] = STATE(331), + [sym_while_statement] = STATE(331), + [sym_do_statement] = STATE(331), + [sym_for_statement] = STATE(331), + [sym_return_statement] = STATE(331), + [sym_break_statement] = STATE(331), + [sym_continue_statement] = STATE(331), + [sym_goto_statement] = STATE(331), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [357] = { - [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_typedef] = ACTIONS(1134), - [anon_sym_extern] = 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_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym_const] = 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_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1134), + [396] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(330), + [sym_attributed_statement] = STATE(330), + [sym_labeled_statement] = STATE(330), + [sym_expression_statement] = STATE(330), + [sym_if_statement] = STATE(330), + [sym_switch_statement] = STATE(330), + [sym_case_statement] = STATE(330), + [sym_while_statement] = STATE(330), + [sym_do_statement] = STATE(330), + [sym_for_statement] = STATE(330), + [sym_return_statement] = STATE(330), + [sym_break_statement] = STATE(330), + [sym_continue_statement] = STATE(330), + [sym_goto_statement] = STATE(330), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [aux_sym_preproc_if_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1138), - [sym_preproc_directive] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1138), - [anon_sym_extern] = 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_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym_const] = 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_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1138), + [397] = { + [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_typedef] = ACTIONS(1282), + [anon_sym_extern] = 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_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = 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_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = 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), }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1112), - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_LPAREN2] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1112), - [anon_sym___declspec] = ACTIONS(1110), - [anon_sym___cdecl] = ACTIONS(1110), - [anon_sym___clrcall] = ACTIONS(1110), - [anon_sym___stdcall] = ACTIONS(1110), - [anon_sym___fastcall] = ACTIONS(1110), - [anon_sym___thiscall] = ACTIONS(1110), - [anon_sym___vectorcall] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [anon_sym___restrict__] = ACTIONS(1110), - [anon_sym__Atomic] = ACTIONS(1110), - [anon_sym__Noreturn] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(1110), - [anon_sym_default] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_sizeof] = ACTIONS(1110), - [anon_sym_offsetof] = ACTIONS(1110), - [anon_sym__Generic] = ACTIONS(1110), - [anon_sym_asm] = ACTIONS(1110), - [anon_sym___asm__] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym_u_SQUOTE] = ACTIONS(1112), - [anon_sym_U_SQUOTE] = ACTIONS(1112), - [anon_sym_u8_SQUOTE] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_u_DQUOTE] = ACTIONS(1112), - [anon_sym_U_DQUOTE] = ACTIONS(1112), - [anon_sym_u8_DQUOTE] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1112), - [sym_true] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), + [398] = { + [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_typedef] = ACTIONS(1258), + [anon_sym_extern] = 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_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = 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), }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_identifier] = ACTIONS(1114), - [aux_sym_preproc_include_token1] = ACTIONS(1114), - [aux_sym_preproc_def_token1] = ACTIONS(1114), - [aux_sym_preproc_if_token1] = ACTIONS(1114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), - [sym_preproc_directive] = ACTIONS(1114), - [anon_sym_LPAREN2] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_TILDE] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_SEMI] = ACTIONS(1116), - [anon_sym_typedef] = ACTIONS(1114), - [anon_sym_extern] = ACTIONS(1114), - [anon_sym___attribute__] = ACTIONS(1114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1116), - [anon_sym___declspec] = ACTIONS(1114), - [anon_sym___cdecl] = ACTIONS(1114), - [anon_sym___clrcall] = ACTIONS(1114), - [anon_sym___stdcall] = ACTIONS(1114), - [anon_sym___fastcall] = ACTIONS(1114), - [anon_sym___thiscall] = ACTIONS(1114), - [anon_sym___vectorcall] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_auto] = ACTIONS(1114), - [anon_sym_register] = ACTIONS(1114), - [anon_sym_inline] = ACTIONS(1114), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_volatile] = ACTIONS(1114), - [anon_sym_restrict] = ACTIONS(1114), - [anon_sym___restrict__] = ACTIONS(1114), - [anon_sym__Atomic] = ACTIONS(1114), - [anon_sym__Noreturn] = ACTIONS(1114), - [anon_sym_signed] = ACTIONS(1114), - [anon_sym_unsigned] = ACTIONS(1114), - [anon_sym_long] = ACTIONS(1114), - [anon_sym_short] = ACTIONS(1114), - [sym_primitive_type] = ACTIONS(1114), - [anon_sym_enum] = ACTIONS(1114), - [anon_sym_struct] = ACTIONS(1114), - [anon_sym_union] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1114), - [anon_sym_switch] = ACTIONS(1114), - [anon_sym_case] = ACTIONS(1114), - [anon_sym_default] = ACTIONS(1114), - [anon_sym_while] = ACTIONS(1114), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1114), - [anon_sym_break] = ACTIONS(1114), - [anon_sym_continue] = ACTIONS(1114), - [anon_sym_goto] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(1116), - [anon_sym_PLUS_PLUS] = ACTIONS(1116), - [anon_sym_sizeof] = ACTIONS(1114), - [anon_sym_offsetof] = ACTIONS(1114), - [anon_sym__Generic] = ACTIONS(1114), - [anon_sym_asm] = ACTIONS(1114), - [anon_sym___asm__] = ACTIONS(1114), - [sym_number_literal] = ACTIONS(1116), - [anon_sym_L_SQUOTE] = ACTIONS(1116), - [anon_sym_u_SQUOTE] = ACTIONS(1116), - [anon_sym_U_SQUOTE] = ACTIONS(1116), - [anon_sym_u8_SQUOTE] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_L_DQUOTE] = ACTIONS(1116), - [anon_sym_u_DQUOTE] = ACTIONS(1116), - [anon_sym_U_DQUOTE] = ACTIONS(1116), - [anon_sym_u8_DQUOTE] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), + [399] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [400] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(329), + [sym_attributed_statement] = STATE(329), + [sym_labeled_statement] = STATE(329), + [sym_expression_statement] = STATE(329), + [sym_if_statement] = STATE(329), + [sym_switch_statement] = STATE(329), + [sym_case_statement] = STATE(329), + [sym_while_statement] = STATE(329), + [sym_do_statement] = STATE(329), + [sym_for_statement] = STATE(329), + [sym_return_statement] = STATE(329), + [sym_break_statement] = STATE(329), + [sym_continue_statement] = STATE(329), + [sym_goto_statement] = STATE(329), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1378), - [anon_sym_extern] = 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_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_const] = 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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = 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(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1378), + [401] = { + [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_typedef] = ACTIONS(1262), + [anon_sym_extern] = 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_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = 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_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = 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), }, - [362] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1390), - [anon_sym_extern] = 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_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_const] = 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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1390), + [402] = { + [sym_attribute_declaration] = STATE(402), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1507), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_goto] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1423), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym___asm__] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1435), + [anon_sym_u_SQUOTE] = ACTIONS(1435), + [anon_sym_U_SQUOTE] = ACTIONS(1435), + [anon_sym_u8_SQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [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(1441), + [sym_false] = ACTIONS(1441), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [363] = { + [403] = { + [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_typedef] = ACTIONS(1266), + [anon_sym_extern] = 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_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = 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_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = 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), + }, + [404] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(164), + [sym_attributed_statement] = STATE(164), + [sym_labeled_statement] = STATE(164), + [sym_expression_statement] = STATE(164), + [sym_if_statement] = STATE(164), + [sym_switch_statement] = STATE(164), + [sym_case_statement] = STATE(164), + [sym_while_statement] = STATE(164), + [sym_do_statement] = STATE(164), + [sym_for_statement] = STATE(164), + [sym_return_statement] = STATE(164), + [sym_break_statement] = STATE(164), + [sym_continue_statement] = STATE(164), + [sym_goto_statement] = STATE(164), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [405] = { + [sym_attribute_declaration] = STATE(436), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_labeled_statement] = STATE(290), + [sym_expression_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_switch_statement] = STATE(290), + [sym_case_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_do_statement] = STATE(290), + [sym_for_statement] = STATE(290), + [sym_return_statement] = STATE(290), + [sym_break_statement] = STATE(290), + [sym_continue_statement] = STATE(290), + [sym_goto_statement] = STATE(290), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [406] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(211), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [407] = { [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), @@ -47148,16 +54624,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1270), [anon_sym___vectorcall] = ACTIONS(1270), [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), [anon_sym_static] = ACTIONS(1270), [anon_sym_auto] = ACTIONS(1270), [anon_sym_register] = ACTIONS(1270), [anon_sym_inline] = ACTIONS(1270), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1270), [anon_sym_unsigned] = ACTIONS(1270), [anon_sym_long] = ACTIONS(1270), @@ -47197,338 +54677,1546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1272), [sym_true] = ACTIONS(1270), [sym_false] = ACTIONS(1270), - [sym_null] = ACTIONS(1270), + [anon_sym_NULL] = ACTIONS(1270), + [anon_sym_nullptr] = ACTIONS(1270), + [sym_comment] = ACTIONS(3), + }, + [408] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(328), + [sym_attributed_statement] = STATE(328), + [sym_labeled_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_switch_statement] = STATE(328), + [sym_case_statement] = STATE(328), + [sym_while_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [409] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(235), + [sym_attributed_statement] = STATE(235), + [sym_labeled_statement] = STATE(235), + [sym_expression_statement] = STATE(235), + [sym_if_statement] = STATE(235), + [sym_switch_statement] = STATE(235), + [sym_case_statement] = STATE(235), + [sym_while_statement] = STATE(235), + [sym_do_statement] = STATE(235), + [sym_for_statement] = STATE(235), + [sym_return_statement] = STATE(235), + [sym_break_statement] = STATE(235), + [sym_continue_statement] = STATE(235), + [sym_goto_statement] = STATE(235), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [410] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(209), + [sym_attributed_statement] = STATE(209), + [sym_labeled_statement] = STATE(209), + [sym_expression_statement] = STATE(209), + [sym_if_statement] = STATE(209), + [sym_switch_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_do_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_return_statement] = STATE(209), + [sym_break_statement] = STATE(209), + [sym_continue_statement] = STATE(209), + [sym_goto_statement] = STATE(209), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [411] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(161), + [sym_attributed_statement] = STATE(161), + [sym_labeled_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_if_statement] = STATE(161), + [sym_switch_statement] = STATE(161), + [sym_case_statement] = STATE(161), + [sym_while_statement] = STATE(161), + [sym_do_statement] = STATE(161), + [sym_for_statement] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_break_statement] = STATE(161), + [sym_continue_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [412] = { + [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_typedef] = ACTIONS(1294), + [anon_sym_extern] = 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_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = 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), + }, + [413] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(326), + [sym_attributed_statement] = STATE(326), + [sym_labeled_statement] = STATE(326), + [sym_expression_statement] = STATE(326), + [sym_if_statement] = STATE(326), + [sym_switch_statement] = STATE(326), + [sym_case_statement] = STATE(326), + [sym_while_statement] = STATE(326), + [sym_do_statement] = STATE(326), + [sym_for_statement] = STATE(326), + [sym_return_statement] = STATE(326), + [sym_break_statement] = STATE(326), + [sym_continue_statement] = STATE(326), + [sym_goto_statement] = STATE(326), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [414] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(325), + [sym_attributed_statement] = STATE(325), + [sym_labeled_statement] = STATE(325), + [sym_expression_statement] = STATE(325), + [sym_if_statement] = STATE(325), + [sym_switch_statement] = STATE(325), + [sym_case_statement] = STATE(325), + [sym_while_statement] = STATE(325), + [sym_do_statement] = STATE(325), + [sym_for_statement] = STATE(325), + [sym_return_statement] = STATE(325), + [sym_break_statement] = STATE(325), + [sym_continue_statement] = STATE(325), + [sym_goto_statement] = STATE(325), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [415] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(324), + [sym_attributed_statement] = STATE(324), + [sym_labeled_statement] = STATE(324), + [sym_expression_statement] = STATE(324), + [sym_if_statement] = STATE(324), + [sym_switch_statement] = STATE(324), + [sym_case_statement] = STATE(324), + [sym_while_statement] = STATE(324), + [sym_do_statement] = STATE(324), + [sym_for_statement] = STATE(324), + [sym_return_statement] = STATE(324), + [sym_break_statement] = STATE(324), + [sym_continue_statement] = STATE(324), + [sym_goto_statement] = STATE(324), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [416] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [417] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(323), + [sym_attributed_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [418] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(322), + [sym_attributed_statement] = STATE(322), + [sym_labeled_statement] = STATE(322), + [sym_expression_statement] = STATE(322), + [sym_if_statement] = STATE(322), + [sym_switch_statement] = STATE(322), + [sym_case_statement] = STATE(322), + [sym_while_statement] = STATE(322), + [sym_do_statement] = STATE(322), + [sym_for_statement] = STATE(322), + [sym_return_statement] = STATE(322), + [sym_break_statement] = STATE(322), + [sym_continue_statement] = STATE(322), + [sym_goto_statement] = STATE(322), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [419] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [420] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(295), + [sym_attributed_statement] = STATE(295), + [sym_labeled_statement] = STATE(295), + [sym_expression_statement] = STATE(295), + [sym_if_statement] = STATE(295), + [sym_switch_statement] = STATE(295), + [sym_case_statement] = STATE(295), + [sym_while_statement] = STATE(295), + [sym_do_statement] = STATE(295), + [sym_for_statement] = STATE(295), + [sym_return_statement] = STATE(295), + [sym_break_statement] = STATE(295), + [sym_continue_statement] = STATE(295), + [sym_goto_statement] = STATE(295), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1108), - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), + [421] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1386), - [anon_sym_extern] = 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_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_const] = 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_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1386), + [422] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [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__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1386), - [anon_sym_extern] = 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_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_const] = 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_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1386), + [423] = { + [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_typedef] = ACTIONS(1250), + [anon_sym_extern] = 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_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = 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), }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym_offsetof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [anon_sym_asm] = ACTIONS(1092), - [anon_sym___asm__] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [424] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(1815), + [sym_attributed_statement] = STATE(1815), + [sym_labeled_statement] = STATE(1815), + [sym_expression_statement] = STATE(1815), + [sym_if_statement] = STATE(1815), + [sym_switch_statement] = STATE(1815), + [sym_case_statement] = STATE(1815), + [sym_while_statement] = STATE(1815), + [sym_do_statement] = STATE(1815), + [sym_for_statement] = STATE(1815), + [sym_return_statement] = STATE(1815), + [sym_break_statement] = STATE(1815), + [sym_continue_statement] = STATE(1815), + [sym_goto_statement] = STATE(1815), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [368] = { + [425] = { + [sym_attribute_declaration] = STATE(402), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [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__expression] = STATE(1008), + [sym_comma_expression] = STATE(1732), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [426] = { [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), @@ -47552,17 +56240,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1278), [anon_sym___vectorcall] = ACTIONS(1278), [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), [anon_sym_static] = ACTIONS(1278), [anon_sym_auto] = ACTIONS(1278), [anon_sym_register] = ACTIONS(1278), [anon_sym_inline] = ACTIONS(1278), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1278), [anon_sym_unsigned] = ACTIONS(1278), [anon_sym_long] = ACTIONS(1278), @@ -47602,582 +56292,1120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1280), [sym_true] = ACTIONS(1278), [sym_false] = ACTIONS(1278), - [sym_null] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, - [369] = { - [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_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_typedef] = ACTIONS(1390), - [anon_sym_extern] = 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_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_const] = 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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1390), + [427] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(121), + [sym_attributed_statement] = STATE(121), + [sym_labeled_statement] = STATE(121), + [sym_expression_statement] = STATE(121), + [sym_if_statement] = STATE(121), + [sym_switch_statement] = STATE(121), + [sym_case_statement] = STATE(121), + [sym_while_statement] = STATE(121), + [sym_do_statement] = STATE(121), + [sym_for_statement] = STATE(121), + [sym_return_statement] = STATE(121), + [sym_break_statement] = STATE(121), + [sym_continue_statement] = STATE(121), + [sym_goto_statement] = STATE(121), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_identifier] = ACTIONS(1102), - [aux_sym_preproc_include_token1] = ACTIONS(1102), - [aux_sym_preproc_def_token1] = ACTIONS(1102), - [aux_sym_preproc_if_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_LPAREN2] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym___attribute__] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), - [anon_sym___declspec] = ACTIONS(1102), - [anon_sym___cdecl] = ACTIONS(1102), - [anon_sym___clrcall] = ACTIONS(1102), - [anon_sym___stdcall] = ACTIONS(1102), - [anon_sym___fastcall] = ACTIONS(1102), - [anon_sym___thiscall] = ACTIONS(1102), - [anon_sym___vectorcall] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym___restrict__] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym__Noreturn] = ACTIONS(1102), - [anon_sym_signed] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [anon_sym_offsetof] = ACTIONS(1102), - [anon_sym__Generic] = ACTIONS(1102), - [anon_sym_asm] = ACTIONS(1102), - [anon_sym___asm__] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_L_SQUOTE] = ACTIONS(1104), - [anon_sym_u_SQUOTE] = ACTIONS(1104), - [anon_sym_U_SQUOTE] = ACTIONS(1104), - [anon_sym_u8_SQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_L_DQUOTE] = ACTIONS(1104), - [anon_sym_u_DQUOTE] = ACTIONS(1104), - [anon_sym_U_DQUOTE] = ACTIONS(1104), - [anon_sym_u8_DQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), + [428] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(320), + [sym_attributed_statement] = STATE(320), + [sym_labeled_statement] = STATE(320), + [sym_expression_statement] = STATE(320), + [sym_if_statement] = STATE(320), + [sym_switch_statement] = STATE(320), + [sym_case_statement] = STATE(320), + [sym_while_statement] = STATE(320), + [sym_do_statement] = STATE(320), + [sym_for_statement] = STATE(320), + [sym_return_statement] = STATE(320), + [sym_break_statement] = STATE(320), + [sym_continue_statement] = STATE(320), + [sym_goto_statement] = STATE(320), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_identifier] = ACTIONS(1118), - [aux_sym_preproc_include_token1] = ACTIONS(1118), - [aux_sym_preproc_def_token1] = ACTIONS(1118), - [aux_sym_preproc_if_token1] = ACTIONS(1118), - [aux_sym_preproc_if_token2] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1118), - [sym_preproc_directive] = ACTIONS(1118), - [anon_sym_LPAREN2] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_typedef] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1118), - [anon_sym___attribute__] = ACTIONS(1118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1120), - [anon_sym___declspec] = ACTIONS(1118), - [anon_sym___cdecl] = ACTIONS(1118), - [anon_sym___clrcall] = ACTIONS(1118), - [anon_sym___stdcall] = ACTIONS(1118), - [anon_sym___fastcall] = ACTIONS(1118), - [anon_sym___thiscall] = ACTIONS(1118), - [anon_sym___vectorcall] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_auto] = ACTIONS(1118), - [anon_sym_register] = ACTIONS(1118), - [anon_sym_inline] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_volatile] = ACTIONS(1118), - [anon_sym_restrict] = ACTIONS(1118), - [anon_sym___restrict__] = ACTIONS(1118), - [anon_sym__Atomic] = ACTIONS(1118), - [anon_sym__Noreturn] = ACTIONS(1118), - [anon_sym_signed] = ACTIONS(1118), - [anon_sym_unsigned] = ACTIONS(1118), - [anon_sym_long] = ACTIONS(1118), - [anon_sym_short] = ACTIONS(1118), - [sym_primitive_type] = ACTIONS(1118), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_struct] = ACTIONS(1118), - [anon_sym_union] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_case] = ACTIONS(1118), - [anon_sym_default] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_goto] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1120), - [anon_sym_sizeof] = ACTIONS(1118), - [anon_sym_offsetof] = ACTIONS(1118), - [anon_sym__Generic] = ACTIONS(1118), - [anon_sym_asm] = ACTIONS(1118), - [anon_sym___asm__] = ACTIONS(1118), - [sym_number_literal] = ACTIONS(1120), - [anon_sym_L_SQUOTE] = ACTIONS(1120), - [anon_sym_u_SQUOTE] = ACTIONS(1120), - [anon_sym_U_SQUOTE] = ACTIONS(1120), - [anon_sym_u8_SQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_L_DQUOTE] = ACTIONS(1120), - [anon_sym_u_DQUOTE] = ACTIONS(1120), - [anon_sym_U_DQUOTE] = ACTIONS(1120), - [anon_sym_u8_DQUOTE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), + [429] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1382), - [anon_sym_extern] = 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_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_const] = 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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1382), + [430] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(298), + [sym_attributed_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_case_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_identifier] = ACTIONS(1098), - [aux_sym_preproc_include_token1] = ACTIONS(1098), - [aux_sym_preproc_def_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token1] = ACTIONS(1098), - [aux_sym_preproc_if_token2] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1098), - [sym_preproc_directive] = ACTIONS(1098), - [anon_sym_LPAREN2] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym___attribute__] = ACTIONS(1098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym___declspec] = ACTIONS(1098), - [anon_sym___cdecl] = ACTIONS(1098), - [anon_sym___clrcall] = ACTIONS(1098), - [anon_sym___stdcall] = ACTIONS(1098), - [anon_sym___fastcall] = ACTIONS(1098), - [anon_sym___thiscall] = ACTIONS(1098), - [anon_sym___vectorcall] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_auto] = ACTIONS(1098), - [anon_sym_register] = ACTIONS(1098), - [anon_sym_inline] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_volatile] = ACTIONS(1098), - [anon_sym_restrict] = ACTIONS(1098), - [anon_sym___restrict__] = ACTIONS(1098), - [anon_sym__Atomic] = ACTIONS(1098), - [anon_sym__Noreturn] = ACTIONS(1098), - [anon_sym_signed] = ACTIONS(1098), - [anon_sym_unsigned] = ACTIONS(1098), - [anon_sym_long] = ACTIONS(1098), - [anon_sym_short] = ACTIONS(1098), - [sym_primitive_type] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_goto] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_sizeof] = ACTIONS(1098), - [anon_sym_offsetof] = ACTIONS(1098), - [anon_sym__Generic] = ACTIONS(1098), - [anon_sym_asm] = ACTIONS(1098), - [anon_sym___asm__] = ACTIONS(1098), - [sym_number_literal] = ACTIONS(1100), - [anon_sym_L_SQUOTE] = ACTIONS(1100), - [anon_sym_u_SQUOTE] = ACTIONS(1100), - [anon_sym_U_SQUOTE] = ACTIONS(1100), - [anon_sym_u8_SQUOTE] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_L_DQUOTE] = ACTIONS(1100), - [anon_sym_u_DQUOTE] = ACTIONS(1100), - [anon_sym_U_DQUOTE] = ACTIONS(1100), - [anon_sym_u8_DQUOTE] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_true] = ACTIONS(1098), - [sym_false] = ACTIONS(1098), - [sym_null] = ACTIONS(1098), + [431] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(319), + [sym_attributed_statement] = STATE(319), + [sym_labeled_statement] = STATE(319), + [sym_expression_statement] = STATE(319), + [sym_if_statement] = STATE(319), + [sym_switch_statement] = STATE(319), + [sym_case_statement] = STATE(319), + [sym_while_statement] = STATE(319), + [sym_do_statement] = STATE(319), + [sym_for_statement] = STATE(319), + [sym_return_statement] = STATE(319), + [sym_break_statement] = STATE(319), + [sym_continue_statement] = STATE(319), + [sym_goto_statement] = STATE(319), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [374] = { - [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_typedef] = ACTIONS(1138), - [anon_sym_extern] = 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_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym_const] = 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_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1138), + [432] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [433] = { + [ts_builtin_sym_end] = ACTIONS(1272), + [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_typedef] = ACTIONS(1270), + [anon_sym_extern] = 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_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = 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_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = 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), [sym_comment] = ACTIONS(3), }, - [375] = { - [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_typedef] = ACTIONS(1278), - [anon_sym_extern] = 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_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym_const] = 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_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = 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_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1278), + [434] = { + [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_typedef] = ACTIONS(1290), + [anon_sym_extern] = 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_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = 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_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = 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), }, - [376] = { + [435] = { + [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_typedef] = ACTIONS(1290), + [anon_sym_extern] = 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_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = 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_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = 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), + }, + [436] = { + [sym_attribute_declaration] = STATE(436), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_labeled_statement] = STATE(290), + [sym_expression_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_switch_statement] = STATE(290), + [sym_case_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_do_statement] = STATE(290), + [sym_for_statement] = STATE(290), + [sym_return_statement] = STATE(290), + [sym_break_statement] = STATE(290), + [sym_continue_statement] = STATE(290), + [sym_goto_statement] = STATE(290), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1537), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1567), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_goto] = ACTIONS(1576), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1423), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym___asm__] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1435), + [anon_sym_u_SQUOTE] = ACTIONS(1435), + [anon_sym_U_SQUOTE] = ACTIONS(1435), + [anon_sym_u8_SQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [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(1441), + [sym_false] = ACTIONS(1441), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [437] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [438] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + }, + [439] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(278), + [sym_attributed_statement] = STATE(278), + [sym_labeled_statement] = STATE(278), + [sym_expression_statement] = STATE(278), + [sym_if_statement] = STATE(278), + [sym_switch_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(278), + [sym_return_statement] = STATE(278), + [sym_break_statement] = STATE(278), + [sym_continue_statement] = STATE(278), + [sym_goto_statement] = STATE(278), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [440] = { [sym_identifier] = ACTIONS(1324), [aux_sym_preproc_include_token1] = ACTIONS(1324), [aux_sym_preproc_def_token1] = ACTIONS(1324), [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), [sym_preproc_directive] = ACTIONS(1324), @@ -48201,16 +57429,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1324), [anon_sym___vectorcall] = ACTIONS(1324), [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1324), [anon_sym_auto] = ACTIONS(1324), [anon_sym_register] = ACTIONS(1324), [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), [anon_sym_volatile] = ACTIONS(1324), [anon_sym_restrict] = ACTIONS(1324), [anon_sym___restrict__] = ACTIONS(1324), [anon_sym__Atomic] = ACTIONS(1324), [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), [anon_sym_signed] = ACTIONS(1324), [anon_sym_unsigned] = ACTIONS(1324), [anon_sym_long] = ACTIONS(1324), @@ -48250,257 +57482,1206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1326), [sym_true] = ACTIONS(1324), [sym_false] = ACTIONS(1324), - [sym_null] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [377] = { - [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_typedef] = ACTIONS(1138), - [anon_sym_extern] = 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_static] = ACTIONS(1138), - [anon_sym_auto] = ACTIONS(1138), - [anon_sym_register] = ACTIONS(1138), - [anon_sym_inline] = ACTIONS(1138), - [anon_sym_const] = 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_signed] = ACTIONS(1138), - [anon_sym_unsigned] = ACTIONS(1138), - [anon_sym_long] = ACTIONS(1138), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1138), - [anon_sym_offsetof] = ACTIONS(1138), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1138), + [441] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [442] = { + [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_typedef] = ACTIONS(1274), + [anon_sym_extern] = 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_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = 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_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = 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), + }, + [443] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(279), + [sym_attributed_statement] = STATE(279), + [sym_labeled_statement] = STATE(279), + [sym_expression_statement] = STATE(279), + [sym_if_statement] = STATE(279), + [sym_switch_statement] = STATE(279), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(279), + [sym_do_statement] = STATE(279), + [sym_for_statement] = STATE(279), + [sym_return_statement] = STATE(279), + [sym_break_statement] = STATE(279), + [sym_continue_statement] = STATE(279), + [sym_goto_statement] = STATE(279), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [444] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_goto_statement] = STATE(263), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [445] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(103), + [sym_attributed_statement] = STATE(103), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(103), + [sym_if_statement] = STATE(103), + [sym_switch_statement] = STATE(103), + [sym_case_statement] = STATE(103), + [sym_while_statement] = STATE(103), + [sym_do_statement] = STATE(103), + [sym_for_statement] = STATE(103), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(103), + [sym_continue_statement] = STATE(103), + [sym_goto_statement] = STATE(103), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [446] = { + [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_typedef] = ACTIONS(1266), + [anon_sym_extern] = 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_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = 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_offsetof] = ACTIONS(1266), + [anon_sym__Generic] = 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), + }, + [447] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [448] = { + [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_typedef] = ACTIONS(1262), + [anon_sym_extern] = 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_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = 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_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = 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), + }, + [449] = { + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = 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_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = 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), + }, + [450] = { + [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_typedef] = ACTIONS(1250), + [anon_sym_extern] = 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_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = 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), + }, + [451] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(1806), + [sym_attributed_statement] = STATE(1806), + [sym_labeled_statement] = STATE(1806), + [sym_expression_statement] = STATE(1806), + [sym_if_statement] = STATE(1806), + [sym_switch_statement] = STATE(1806), + [sym_case_statement] = STATE(1806), + [sym_while_statement] = STATE(1806), + [sym_do_statement] = STATE(1806), + [sym_for_statement] = STATE(1806), + [sym_return_statement] = STATE(1806), + [sym_break_statement] = STATE(1806), + [sym_continue_statement] = STATE(1806), + [sym_goto_statement] = STATE(1806), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [452] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(264), + [sym_attributed_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_case_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_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_typedef] = ACTIONS(1378), - [anon_sym_extern] = 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_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_const] = 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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = 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(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1378), + [453] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token2] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), + [454] = { + [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_typedef] = ACTIONS(1282), + [anon_sym_extern] = 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_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = 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_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = 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), }, - [380] = { + [455] = { [sym_identifier] = ACTIONS(1332), [aux_sym_preproc_include_token1] = ACTIONS(1332), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), [sym_preproc_directive] = ACTIONS(1332), @@ -48524,17 +58705,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1332), [anon_sym___vectorcall] = ACTIONS(1332), [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), [anon_sym_static] = ACTIONS(1332), [anon_sym_auto] = ACTIONS(1332), [anon_sym_register] = ACTIONS(1332), [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), [anon_sym_volatile] = ACTIONS(1332), [anon_sym_restrict] = ACTIONS(1332), [anon_sym___restrict__] = ACTIONS(1332), [anon_sym__Atomic] = ACTIONS(1332), [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), [anon_sym_signed] = ACTIONS(1332), [anon_sym_unsigned] = ACTIONS(1332), [anon_sym_long] = ACTIONS(1332), @@ -48574,92 +58757,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1334), [sym_true] = ACTIONS(1332), [sym_false] = ACTIONS(1332), - [sym_null] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [381] = { - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_RBRACE] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1334), + [456] = { [sym_identifier] = ACTIONS(1332), [aux_sym_preproc_include_token1] = ACTIONS(1332), [aux_sym_preproc_def_token1] = ACTIONS(1332), @@ -48687,16 +58789,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1332), [anon_sym___vectorcall] = ACTIONS(1332), [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), [anon_sym_static] = ACTIONS(1332), [anon_sym_auto] = ACTIONS(1332), [anon_sym_register] = ACTIONS(1332), [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), [anon_sym_volatile] = ACTIONS(1332), [anon_sym_restrict] = ACTIONS(1332), [anon_sym___restrict__] = ACTIONS(1332), [anon_sym__Atomic] = ACTIONS(1332), [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), [anon_sym_signed] = ACTIONS(1332), [anon_sym_unsigned] = ACTIONS(1332), [anon_sym_long] = ACTIONS(1332), @@ -48736,852 +58842,2934 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1334), [sym_true] = ACTIONS(1332), [sym_false] = ACTIONS(1332), - [sym_null] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [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_typedef] = ACTIONS(1282), + [anon_sym_extern] = 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_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = 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_offsetof] = ACTIONS(1282), + [anon_sym__Generic] = 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), + }, + [458] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(104), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [459] = { + [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_typedef] = ACTIONS(1254), + [anon_sym_extern] = 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_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_sizeof] = ACTIONS(1254), + [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym__Generic] = 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), + }, + [460] = { + [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_typedef] = ACTIONS(1250), + [anon_sym_extern] = 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_static] = ACTIONS(1250), + [anon_sym_auto] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1250), + [anon_sym_unsigned] = ACTIONS(1250), + [anon_sym_long] = ACTIONS(1250), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_sizeof] = ACTIONS(1250), + [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym__Generic] = 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), + }, + [461] = { + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token1] = ACTIONS(1258), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [sym_preproc_directive] = ACTIONS(1258), + [anon_sym_LPAREN2] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_extern] = 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_static] = ACTIONS(1258), + [anon_sym_auto] = ACTIONS(1258), + [anon_sym_register] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1258), + [anon_sym_unsigned] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1258), + [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_sizeof] = ACTIONS(1258), + [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym__Generic] = 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), + }, + [462] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(86), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [463] = { + [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_typedef] = ACTIONS(1262), + [anon_sym_extern] = 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_static] = ACTIONS(1262), + [anon_sym_auto] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1262), + [anon_sym_unsigned] = ACTIONS(1262), + [anon_sym_long] = ACTIONS(1262), + [anon_sym_short] = 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_offsetof] = ACTIONS(1262), + [anon_sym__Generic] = 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), + }, + [464] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(116), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_case_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_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__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [466] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [467] = { + [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_typedef] = ACTIONS(1270), + [anon_sym_extern] = 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_static] = ACTIONS(1270), + [anon_sym_auto] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1270), + [anon_sym_unsigned] = ACTIONS(1270), + [anon_sym_long] = ACTIONS(1270), + [anon_sym_short] = 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_offsetof] = ACTIONS(1270), + [anon_sym__Generic] = 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), + [sym_comment] = ACTIONS(3), + }, + [468] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(113), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_case_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [470] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(255), + [sym_attributed_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_case_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_goto_statement] = STATE(255), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_switch] = ACTIONS(1591), + [anon_sym_case] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1600), + [anon_sym_do] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_goto] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1423), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym___asm__] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1435), + [anon_sym_u_SQUOTE] = ACTIONS(1435), + [anon_sym_U_SQUOTE] = ACTIONS(1435), + [anon_sym_u8_SQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [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(1441), + [sym_false] = ACTIONS(1441), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(107), + [sym_attributed_statement] = STATE(107), + [sym_labeled_statement] = STATE(107), + [sym_expression_statement] = STATE(107), + [sym_if_statement] = STATE(107), + [sym_switch_statement] = STATE(107), + [sym_case_statement] = STATE(107), + [sym_while_statement] = STATE(107), + [sym_do_statement] = STATE(107), + [sym_for_statement] = STATE(107), + [sym_return_statement] = STATE(107), + [sym_break_statement] = STATE(107), + [sym_continue_statement] = STATE(107), + [sym_goto_statement] = STATE(107), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [473] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(1836), + [sym_attributed_statement] = STATE(1836), + [sym_labeled_statement] = STATE(1836), + [sym_expression_statement] = STATE(1836), + [sym_if_statement] = STATE(1836), + [sym_switch_statement] = STATE(1836), + [sym_case_statement] = STATE(1836), + [sym_while_statement] = STATE(1836), + [sym_do_statement] = STATE(1836), + [sym_for_statement] = STATE(1836), + [sym_return_statement] = STATE(1836), + [sym_break_statement] = STATE(1836), + [sym_continue_statement] = STATE(1836), + [sym_goto_statement] = STATE(1836), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [474] = { + [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_typedef] = ACTIONS(1290), + [anon_sym_extern] = 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_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = 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_offsetof] = ACTIONS(1290), + [anon_sym__Generic] = 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), + }, + [475] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(247), + [sym_attributed_statement] = STATE(247), + [sym_labeled_statement] = STATE(247), + [sym_expression_statement] = STATE(247), + [sym_if_statement] = STATE(247), + [sym_switch_statement] = STATE(247), + [sym_case_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_do_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_return_statement] = STATE(247), + [sym_break_statement] = STATE(247), + [sym_continue_statement] = STATE(247), + [sym_goto_statement] = STATE(247), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(1827), + [sym_attributed_statement] = STATE(1827), + [sym_labeled_statement] = STATE(1827), + [sym_expression_statement] = STATE(1827), + [sym_if_statement] = STATE(1827), + [sym_switch_statement] = STATE(1827), + [sym_case_statement] = STATE(1827), + [sym_while_statement] = STATE(1827), + [sym_do_statement] = STATE(1827), + [sym_for_statement] = STATE(1827), + [sym_return_statement] = STATE(1827), + [sym_break_statement] = STATE(1827), + [sym_continue_statement] = STATE(1827), + [sym_goto_statement] = STATE(1827), + [sym__expression] = STATE(977), + [sym_comma_expression] = STATE(1825), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [477] = { + [sym_attribute_declaration] = STATE(489), + [sym_compound_statement] = STATE(252), + [sym_attributed_statement] = STATE(252), + [sym_labeled_statement] = STATE(252), + [sym_expression_statement] = STATE(252), + [sym_if_statement] = STATE(252), + [sym_switch_statement] = STATE(252), + [sym_case_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_do_statement] = STATE(252), + [sym_for_statement] = STATE(252), + [sym_return_statement] = STATE(252), + [sym_break_statement] = STATE(252), + [sym_continue_statement] = STATE(252), + [sym_goto_statement] = STATE(252), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [478] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(111), + [sym_attributed_statement] = STATE(111), + [sym_labeled_statement] = STATE(111), + [sym_expression_statement] = STATE(111), + [sym_if_statement] = STATE(111), + [sym_switch_statement] = STATE(111), + [sym_case_statement] = STATE(111), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(111), + [sym_return_statement] = STATE(111), + [sym_break_statement] = STATE(111), + [sym_continue_statement] = STATE(111), + [sym_goto_statement] = STATE(111), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [479] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(108), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_case_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [383] = { - [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_typedef] = ACTIONS(1134), - [anon_sym_extern] = 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_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym_const] = 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_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1134), + [480] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(110), + [sym_attributed_statement] = STATE(110), + [sym_labeled_statement] = STATE(110), + [sym_expression_statement] = STATE(110), + [sym_if_statement] = STATE(110), + [sym_switch_statement] = STATE(110), + [sym_case_statement] = STATE(110), + [sym_while_statement] = STATE(110), + [sym_do_statement] = STATE(110), + [sym_for_statement] = STATE(110), + [sym_return_statement] = STATE(110), + [sym_break_statement] = STATE(110), + [sym_continue_statement] = STATE(110), + [sym_goto_statement] = STATE(110), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_identifier] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), - [anon_sym___declspec] = ACTIONS(1130), - [anon_sym___cdecl] = ACTIONS(1130), - [anon_sym___clrcall] = ACTIONS(1130), - [anon_sym___stdcall] = ACTIONS(1130), - [anon_sym___fastcall] = ACTIONS(1130), - [anon_sym___thiscall] = ACTIONS(1130), - [anon_sym___vectorcall] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_RBRACE] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_auto] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1130), - [anon_sym_const] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1130), - [anon_sym_restrict] = ACTIONS(1130), - [anon_sym___restrict__] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1130), - [anon_sym__Noreturn] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1130), - [anon_sym_unsigned] = ACTIONS(1130), - [anon_sym_long] = ACTIONS(1130), - [anon_sym_short] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_switch] = ACTIONS(1130), - [anon_sym_case] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [anon_sym_do] = ACTIONS(1130), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_goto] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(1130), - [anon_sym__Generic] = ACTIONS(1130), - [anon_sym_asm] = ACTIONS(1130), - [anon_sym___asm__] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1132), - [anon_sym_L_SQUOTE] = ACTIONS(1132), - [anon_sym_u_SQUOTE] = ACTIONS(1132), - [anon_sym_U_SQUOTE] = ACTIONS(1132), - [anon_sym_u8_SQUOTE] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [anon_sym_L_DQUOTE] = ACTIONS(1132), - [anon_sym_u_DQUOTE] = ACTIONS(1132), - [anon_sym_U_DQUOTE] = ACTIONS(1132), - [anon_sym_u8_DQUOTE] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1132), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), + [481] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [385] = { - [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_typedef] = ACTIONS(1278), - [anon_sym_extern] = 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_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym_const] = 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_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = 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_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1278), + [482] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(312), + [sym_attributed_statement] = STATE(312), + [sym_labeled_statement] = STATE(312), + [sym_expression_statement] = STATE(312), + [sym_if_statement] = STATE(312), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(312), + [sym_while_statement] = STATE(312), + [sym_do_statement] = STATE(312), + [sym_for_statement] = STATE(312), + [sym_return_statement] = STATE(312), + [sym_break_statement] = STATE(312), + [sym_continue_statement] = STATE(312), + [sym_goto_statement] = STATE(312), + [sym__expression] = STATE(982), + [sym_comma_expression] = STATE(1688), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(650), + [anon_sym_while] = ACTIONS(652), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(656), + [anon_sym_return] = ACTIONS(658), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(664), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_identifier] = ACTIONS(1126), - [aux_sym_preproc_include_token1] = ACTIONS(1126), - [aux_sym_preproc_def_token1] = ACTIONS(1126), - [aux_sym_preproc_if_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1126), - [sym_preproc_directive] = ACTIONS(1126), - [anon_sym_LPAREN2] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1126), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1128), - [anon_sym___declspec] = ACTIONS(1126), - [anon_sym___cdecl] = ACTIONS(1126), - [anon_sym___clrcall] = ACTIONS(1126), - [anon_sym___stdcall] = ACTIONS(1126), - [anon_sym___fastcall] = ACTIONS(1126), - [anon_sym___thiscall] = ACTIONS(1126), - [anon_sym___vectorcall] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_auto] = ACTIONS(1126), - [anon_sym_register] = ACTIONS(1126), - [anon_sym_inline] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_volatile] = ACTIONS(1126), - [anon_sym_restrict] = ACTIONS(1126), - [anon_sym___restrict__] = ACTIONS(1126), - [anon_sym__Atomic] = ACTIONS(1126), - [anon_sym__Noreturn] = ACTIONS(1126), - [anon_sym_signed] = ACTIONS(1126), - [anon_sym_unsigned] = ACTIONS(1126), - [anon_sym_long] = ACTIONS(1126), - [anon_sym_short] = ACTIONS(1126), - [sym_primitive_type] = ACTIONS(1126), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_case] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_goto] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1126), - [anon_sym_offsetof] = ACTIONS(1126), - [anon_sym__Generic] = ACTIONS(1126), - [anon_sym_asm] = ACTIONS(1126), - [anon_sym___asm__] = ACTIONS(1126), - [sym_number_literal] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1128), - [anon_sym_u_SQUOTE] = ACTIONS(1128), - [anon_sym_U_SQUOTE] = ACTIONS(1128), - [anon_sym_u8_SQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_L_DQUOTE] = ACTIONS(1128), - [anon_sym_u_DQUOTE] = ACTIONS(1128), - [anon_sym_U_DQUOTE] = ACTIONS(1128), - [anon_sym_u8_DQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [sym_true] = ACTIONS(1126), - [sym_false] = ACTIONS(1126), - [sym_null] = ACTIONS(1126), + [483] = { + [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_typedef] = ACTIONS(1274), + [anon_sym_extern] = 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_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = 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_offsetof] = ACTIONS(1274), + [anon_sym__Generic] = 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), }, - [387] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [sym_null] = ACTIONS(1324), + [484] = { + [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_typedef] = ACTIONS(1294), + [anon_sym_extern] = 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_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = 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_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym__Generic] = 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), }, - [388] = { - [sym_identifier] = ACTIONS(1122), - [aux_sym_preproc_include_token1] = ACTIONS(1122), - [aux_sym_preproc_def_token1] = ACTIONS(1122), - [aux_sym_preproc_if_token1] = ACTIONS(1122), - [aux_sym_preproc_if_token2] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), - [sym_preproc_directive] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1122), - [anon_sym_extern] = ACTIONS(1122), - [anon_sym___attribute__] = ACTIONS(1122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), - [anon_sym___declspec] = ACTIONS(1122), - [anon_sym___cdecl] = ACTIONS(1122), - [anon_sym___clrcall] = ACTIONS(1122), - [anon_sym___stdcall] = ACTIONS(1122), - [anon_sym___fastcall] = ACTIONS(1122), - [anon_sym___thiscall] = ACTIONS(1122), - [anon_sym___vectorcall] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1122), - [anon_sym_auto] = ACTIONS(1122), - [anon_sym_register] = ACTIONS(1122), - [anon_sym_inline] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_volatile] = ACTIONS(1122), - [anon_sym_restrict] = ACTIONS(1122), - [anon_sym___restrict__] = ACTIONS(1122), - [anon_sym__Atomic] = ACTIONS(1122), - [anon_sym__Noreturn] = ACTIONS(1122), - [anon_sym_signed] = ACTIONS(1122), - [anon_sym_unsigned] = ACTIONS(1122), - [anon_sym_long] = ACTIONS(1122), - [anon_sym_short] = ACTIONS(1122), - [sym_primitive_type] = ACTIONS(1122), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_struct] = ACTIONS(1122), - [anon_sym_union] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1122), - [anon_sym_default] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_goto] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_sizeof] = ACTIONS(1122), - [anon_sym_offsetof] = ACTIONS(1122), - [anon_sym__Generic] = ACTIONS(1122), - [anon_sym_asm] = ACTIONS(1122), - [anon_sym___asm__] = ACTIONS(1122), - [sym_number_literal] = ACTIONS(1124), - [anon_sym_L_SQUOTE] = ACTIONS(1124), - [anon_sym_u_SQUOTE] = ACTIONS(1124), - [anon_sym_U_SQUOTE] = ACTIONS(1124), - [anon_sym_u8_SQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_L_DQUOTE] = ACTIONS(1124), - [anon_sym_u_DQUOTE] = ACTIONS(1124), - [anon_sym_U_DQUOTE] = ACTIONS(1124), - [anon_sym_u8_DQUOTE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), + [485] = { + [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_typedef] = ACTIONS(1286), + [anon_sym_extern] = 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_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym_thread_local] = 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_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = 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_offsetof] = ACTIONS(1286), + [anon_sym__Generic] = 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), }, - [389] = { - [sym_identifier] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1130), - [aux_sym_preproc_if_token2] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1132), - [anon_sym___declspec] = ACTIONS(1130), - [anon_sym___cdecl] = ACTIONS(1130), - [anon_sym___clrcall] = ACTIONS(1130), - [anon_sym___stdcall] = ACTIONS(1130), - [anon_sym___fastcall] = ACTIONS(1130), - [anon_sym___thiscall] = ACTIONS(1130), - [anon_sym___vectorcall] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_auto] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1130), - [anon_sym_const] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1130), - [anon_sym_restrict] = ACTIONS(1130), - [anon_sym___restrict__] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1130), - [anon_sym__Noreturn] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1130), - [anon_sym_unsigned] = ACTIONS(1130), - [anon_sym_long] = ACTIONS(1130), - [anon_sym_short] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_switch] = ACTIONS(1130), - [anon_sym_case] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [anon_sym_do] = ACTIONS(1130), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_goto] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [anon_sym_sizeof] = ACTIONS(1130), - [anon_sym_offsetof] = ACTIONS(1130), - [anon_sym__Generic] = ACTIONS(1130), - [anon_sym_asm] = ACTIONS(1130), - [anon_sym___asm__] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1132), - [anon_sym_L_SQUOTE] = ACTIONS(1132), - [anon_sym_u_SQUOTE] = ACTIONS(1132), - [anon_sym_U_SQUOTE] = ACTIONS(1132), - [anon_sym_u8_SQUOTE] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [anon_sym_L_DQUOTE] = ACTIONS(1132), - [anon_sym_u_DQUOTE] = ACTIONS(1132), - [anon_sym_U_DQUOTE] = ACTIONS(1132), - [anon_sym_u8_DQUOTE] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1132), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), + [486] = { + [sym_attribute_declaration] = STATE(346), + [sym_compound_statement] = STATE(109), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_case_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym__expression] = STATE(972), + [sym_comma_expression] = STATE(1737), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(129), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(133), + [anon_sym_while] = ACTIONS(135), + [anon_sym_do] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_return] = ACTIONS(141), + [anon_sym_break] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_goto] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_identifier] = ACTIONS(1122), - [aux_sym_preproc_include_token1] = ACTIONS(1122), - [aux_sym_preproc_def_token1] = ACTIONS(1122), - [aux_sym_preproc_if_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1122), - [sym_preproc_directive] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1122), - [anon_sym_extern] = ACTIONS(1122), - [anon_sym___attribute__] = ACTIONS(1122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1124), - [anon_sym___declspec] = ACTIONS(1122), - [anon_sym___cdecl] = ACTIONS(1122), - [anon_sym___clrcall] = ACTIONS(1122), - [anon_sym___stdcall] = ACTIONS(1122), - [anon_sym___fastcall] = ACTIONS(1122), - [anon_sym___thiscall] = ACTIONS(1122), - [anon_sym___vectorcall] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1122), - [anon_sym_auto] = ACTIONS(1122), - [anon_sym_register] = ACTIONS(1122), - [anon_sym_inline] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_volatile] = ACTIONS(1122), - [anon_sym_restrict] = ACTIONS(1122), - [anon_sym___restrict__] = ACTIONS(1122), - [anon_sym__Atomic] = ACTIONS(1122), - [anon_sym__Noreturn] = ACTIONS(1122), - [anon_sym_signed] = ACTIONS(1122), - [anon_sym_unsigned] = ACTIONS(1122), - [anon_sym_long] = ACTIONS(1122), - [anon_sym_short] = ACTIONS(1122), - [sym_primitive_type] = ACTIONS(1122), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_struct] = ACTIONS(1122), - [anon_sym_union] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1122), - [anon_sym_default] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_goto] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_sizeof] = ACTIONS(1122), - [anon_sym_offsetof] = ACTIONS(1122), - [anon_sym__Generic] = ACTIONS(1122), - [anon_sym_asm] = ACTIONS(1122), - [anon_sym___asm__] = ACTIONS(1122), - [sym_number_literal] = ACTIONS(1124), - [anon_sym_L_SQUOTE] = ACTIONS(1124), - [anon_sym_u_SQUOTE] = ACTIONS(1124), - [anon_sym_U_SQUOTE] = ACTIONS(1124), - [anon_sym_u8_SQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_L_DQUOTE] = ACTIONS(1124), - [anon_sym_u_DQUOTE] = ACTIONS(1124), - [anon_sym_U_DQUOTE] = ACTIONS(1124), - [anon_sym_u8_DQUOTE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_true] = ACTIONS(1122), - [sym_false] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), + [487] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [391] = { - [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_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_typedef] = ACTIONS(1382), - [anon_sym_extern] = 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_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_const] = 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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = 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_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1382), + [488] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [392] = { - [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_typedef] = ACTIONS(1134), - [anon_sym_extern] = 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_static] = ACTIONS(1134), - [anon_sym_auto] = ACTIONS(1134), - [anon_sym_register] = ACTIONS(1134), - [anon_sym_inline] = ACTIONS(1134), - [anon_sym_const] = 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_signed] = ACTIONS(1134), - [anon_sym_unsigned] = ACTIONS(1134), - [anon_sym_long] = ACTIONS(1134), - [anon_sym_short] = 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_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_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym_offsetof] = ACTIONS(1134), - [anon_sym__Generic] = 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), - [sym_null] = ACTIONS(1134), + [489] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(255), + [sym_attributed_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_case_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_goto_statement] = STATE(255), + [sym__expression] = STATE(980), + [sym_comma_expression] = STATE(1697), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_if] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_case] = ACTIONS(466), + [anon_sym_default] = ACTIONS(468), + [anon_sym_while] = ACTIONS(470), + [anon_sym_do] = ACTIONS(472), + [anon_sym_for] = ACTIONS(474), + [anon_sym_return] = ACTIONS(476), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_goto] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_asm] = ACTIONS(87), + [anon_sym___asm__] = ACTIONS(87), + [sym_number_literal] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(91), + [anon_sym_u_SQUOTE] = ACTIONS(91), + [anon_sym_U_SQUOTE] = ACTIONS(91), + [anon_sym_u8_SQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(91), + [anon_sym_L_DQUOTE] = ACTIONS(93), + [anon_sym_u_DQUOTE] = ACTIONS(93), + [anon_sym_U_DQUOTE] = ACTIONS(93), + [anon_sym_u8_DQUOTE] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym_true] = ACTIONS(95), + [sym_false] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1570), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [490] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [491] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1717), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49590,15 +61778,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -49623,42 +61813,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1521), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [492] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1692), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49667,15 +61859,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -49700,42 +61894,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1512), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [493] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1813), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49744,15 +61940,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -49777,42 +61975,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1456), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [494] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1693), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49821,15 +62021,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -49854,42 +62056,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1583), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [495] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1731), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49898,15 +62102,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -49931,42 +62137,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1458), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [496] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1748), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49975,15 +62183,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -50008,42 +62218,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [399] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1551), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [497] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1777), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50052,15 +62264,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -50085,61 +62299,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym__expression] = STATE(634), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_initializer_list] = STATE(638), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_identifier] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), + [498] = { + [sym_type_qualifier] = STATE(1068), + [sym__type_specifier] = STATE(1099), + [sym_sized_type_specifier] = STATE(1071), + [sym_enum_specifier] = STATE(1071), + [sym_struct_specifier] = STATE(1071), + [sym_union_specifier] = STATE(1071), + [sym__expression] = STATE(944), + [sym_comma_expression] = STATE(1818), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_type_descriptor] = STATE(1817), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_macro_type_specifier] = STATE(1071), + [aux_sym_type_definition_repeat1] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_GT_GT] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_COLON] = ACTIONS(896), - [anon_sym_QMARK] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -50147,8 +62367,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(85), [anon_sym_asm] = ACTIONS(87), [anon_sym___asm__] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DASH_GT] = ACTIONS(896), [sym_number_literal] = ACTIONS(89), [anon_sym_L_SQUOTE] = ACTIONS(91), [anon_sym_u_SQUOTE] = ACTIONS(91), @@ -50162,63 +62380,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_type_qualifier] = STATE(908), - [sym__type_specifier] = STATE(978), - [sym_sized_type_specifier] = STATE(924), - [sym_enum_specifier] = STATE(924), - [sym_struct_specifier] = STATE(924), - [sym_union_specifier] = STATE(924), - [sym__expression] = STATE(828), - [sym_comma_expression] = STATE(1575), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(656), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_type_descriptor] = STATE(1490), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(656), - [sym_call_expression] = STATE(656), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(656), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(656), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_macro_type_specifier] = STATE(924), - [aux_sym_type_definition_repeat1] = STATE(908), - [aux_sym_sized_type_specifier_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(1394), + [499] = { + [sym__expression] = STATE(735), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(778), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(778), + [sym_initializer_list] = STATE(738), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_identifier] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), [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_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_COLON] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1092), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -50226,6 +62444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(85), [anon_sym_asm] = ACTIONS(87), [anon_sym___asm__] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(1102), + [anon_sym_DASH_GT] = ACTIONS(1092), [sym_number_literal] = ACTIONS(89), [anon_sym_L_SQUOTE] = ACTIONS(91), [anon_sym_u_SQUOTE] = ACTIONS(91), @@ -50239,66 +62459,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym__expression] = STATE(665), - [sym_conditional_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_pointer_expression] = STATE(686), - [sym_unary_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_update_expression] = STATE(649), - [sym_cast_expression] = STATE(649), - [sym_sizeof_expression] = STATE(649), - [sym_offsetof_expression] = STATE(649), - [sym_generic_expression] = STATE(649), - [sym_subscript_expression] = STATE(686), - [sym_call_expression] = STATE(686), - [sym_gnu_asm_expression] = STATE(649), - [sym_field_expression] = STATE(686), - [sym_compound_literal_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(686), - [sym_initializer_list] = STATE(638), - [sym_char_literal] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string_literal] = STATE(513), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_GT_GT] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1412), + [500] = { + [sym_identifier] = ACTIONS(1627), + [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_LPAREN2] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_TILDE] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1627), + [anon_sym_PLUS] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1627), + [anon_sym___attribute__] = ACTIONS(1627), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [anon_sym___declspec] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1627), + [anon_sym_EQ] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_auto] = ACTIONS(1627), + [anon_sym_register] = ACTIONS(1627), + [anon_sym_inline] = ACTIONS(1627), + [anon_sym_thread_local] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1627), + [anon_sym_constexpr] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1627), + [anon_sym_restrict] = ACTIONS(1627), + [anon_sym___restrict__] = ACTIONS(1627), + [anon_sym__Atomic] = ACTIONS(1627), + [anon_sym__Noreturn] = ACTIONS(1627), + [anon_sym_noreturn] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1627), + [anon_sym_unsigned] = ACTIONS(1627), + [anon_sym_long] = ACTIONS(1627), + [anon_sym_short] = ACTIONS(1627), + [sym_primitive_type] = ACTIONS(1627), + [anon_sym_enum] = ACTIONS(1627), + [anon_sym_COLON] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1627), + [anon_sym_switch] = ACTIONS(1627), + [anon_sym_case] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1627), + [anon_sym_while] = ACTIONS(1627), + [anon_sym_do] = ACTIONS(1627), + [anon_sym_for] = ACTIONS(1627), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1627), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_goto] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1629), + [anon_sym_sizeof] = ACTIONS(1627), + [anon_sym_offsetof] = ACTIONS(1627), + [anon_sym__Generic] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1627), + [anon_sym___asm__] = ACTIONS(1627), + [sym_number_literal] = ACTIONS(1629), + [anon_sym_L_SQUOTE] = ACTIONS(1629), + [anon_sym_u_SQUOTE] = ACTIONS(1629), + [anon_sym_U_SQUOTE] = ACTIONS(1629), + [anon_sym_u8_SQUOTE] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1629), + [anon_sym_L_DQUOTE] = ACTIONS(1629), + [anon_sym_u_DQUOTE] = ACTIONS(1629), + [anon_sym_U_DQUOTE] = ACTIONS(1629), + [anon_sym_u8_DQUOTE] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_true] = ACTIONS(1627), + [sym_false] = ACTIONS(1627), + [anon_sym_NULL] = ACTIONS(1627), + [anon_sym_nullptr] = ACTIONS(1627), + [sym_comment] = ACTIONS(3), + }, + [501] = { + [sym_identifier] = ACTIONS(1631), + [anon_sym_COMMA] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1633), + [anon_sym_TILDE] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym___attribute__] = ACTIONS(1631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1633), + [anon_sym___declspec] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_EQ] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1631), + [anon_sym_auto] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_inline] = ACTIONS(1631), + [anon_sym_thread_local] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_constexpr] = ACTIONS(1631), + [anon_sym_volatile] = ACTIONS(1631), + [anon_sym_restrict] = ACTIONS(1631), + [anon_sym___restrict__] = ACTIONS(1631), + [anon_sym__Atomic] = ACTIONS(1631), + [anon_sym__Noreturn] = ACTIONS(1631), + [anon_sym_noreturn] = ACTIONS(1631), + [anon_sym_signed] = ACTIONS(1631), + [anon_sym_unsigned] = ACTIONS(1631), + [anon_sym_long] = ACTIONS(1631), + [anon_sym_short] = ACTIONS(1631), + [sym_primitive_type] = ACTIONS(1631), + [anon_sym_enum] = ACTIONS(1631), + [anon_sym_COLON] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1631), + [anon_sym_union] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_switch] = ACTIONS(1631), + [anon_sym_case] = ACTIONS(1631), + [anon_sym_default] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_goto] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_PLUS_PLUS] = ACTIONS(1633), + [anon_sym_sizeof] = ACTIONS(1631), + [anon_sym_offsetof] = ACTIONS(1631), + [anon_sym__Generic] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1631), + [anon_sym___asm__] = ACTIONS(1631), + [sym_number_literal] = ACTIONS(1633), + [anon_sym_L_SQUOTE] = ACTIONS(1633), + [anon_sym_u_SQUOTE] = ACTIONS(1633), + [anon_sym_U_SQUOTE] = ACTIONS(1633), + [anon_sym_u8_SQUOTE] = ACTIONS(1633), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_L_DQUOTE] = ACTIONS(1633), + [anon_sym_u_DQUOTE] = ACTIONS(1633), + [anon_sym_U_DQUOTE] = ACTIONS(1633), + [anon_sym_u8_DQUOTE] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym_true] = ACTIONS(1631), + [sym_false] = ACTIONS(1631), + [anon_sym_NULL] = ACTIONS(1631), + [anon_sym_nullptr] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + }, + [502] = { + [sym__expression] = STATE(793), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(810), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_offsetof_expression] = STATE(764), + [sym_generic_expression] = STATE(764), + [sym_subscript_expression] = STATE(810), + [sym_call_expression] = STATE(810), + [sym_gnu_asm_expression] = STATE(764), + [sym_field_expression] = STATE(810), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(810), + [sym_initializer_list] = STATE(738), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(716), + [sym_null] = STATE(764), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_sizeof] = ACTIONS(1647), [anon_sym_offsetof] = ACTIONS(83), [anon_sym__Generic] = ACTIONS(85), [anon_sym_asm] = ACTIONS(87), [anon_sym___asm__] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DASH_GT] = ACTIONS(896), + [anon_sym_DOT] = ACTIONS(1102), + [anon_sym_DASH_GT] = ACTIONS(1092), [sym_number_literal] = ACTIONS(89), [anon_sym_L_SQUOTE] = ACTIONS(91), [anon_sym_u_SQUOTE] = ACTIONS(91), @@ -50312,307 +62686,3854 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(93), [sym_true] = ACTIONS(95), [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [403] = { - [sym_identifier] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_COLON] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [sym_null] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [404] = { - [sym_identifier] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_COLON] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [sym_null] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(97), + [anon_sym_nullptr] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym___attribute__] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_auto] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_volatile] = ACTIONS(1429), - [anon_sym_restrict] = ACTIONS(1429), - [anon_sym___restrict__] = ACTIONS(1429), - [anon_sym__Atomic] = ACTIONS(1429), - [anon_sym__Noreturn] = ACTIONS(1429), - [anon_sym_signed] = ACTIONS(1429), - [anon_sym_unsigned] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [sym_primitive_type] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_goto] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_sizeof] = ACTIONS(1427), - [anon_sym_offsetof] = ACTIONS(1427), - [anon_sym__Generic] = ACTIONS(1427), - [anon_sym_asm] = ACTIONS(1427), - [anon_sym___asm__] = ACTIONS(1427), - [sym_number_literal] = ACTIONS(1425), - [anon_sym_L_SQUOTE] = ACTIONS(1425), - [anon_sym_u_SQUOTE] = ACTIONS(1425), - [anon_sym_U_SQUOTE] = ACTIONS(1425), - [anon_sym_u8_SQUOTE] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_L_DQUOTE] = ACTIONS(1425), - [anon_sym_u_DQUOTE] = ACTIONS(1425), - [anon_sym_U_DQUOTE] = ACTIONS(1425), - [anon_sym_u8_DQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), + [503] = { + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN2] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym___attribute__] = ACTIONS(1656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1658), + [anon_sym___declspec] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_auto] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_inline] = ACTIONS(1656), + [anon_sym_thread_local] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [anon_sym_constexpr] = ACTIONS(1656), + [anon_sym_volatile] = ACTIONS(1656), + [anon_sym_restrict] = ACTIONS(1656), + [anon_sym___restrict__] = ACTIONS(1656), + [anon_sym__Atomic] = ACTIONS(1656), + [anon_sym__Noreturn] = ACTIONS(1656), + [anon_sym_noreturn] = ACTIONS(1656), + [anon_sym_signed] = ACTIONS(1656), + [anon_sym_unsigned] = ACTIONS(1656), + [anon_sym_long] = ACTIONS(1656), + [anon_sym_short] = ACTIONS(1656), + [sym_primitive_type] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1656), + [anon_sym_struct] = ACTIONS(1656), + [anon_sym_union] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_switch] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_do] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_goto] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_sizeof] = ACTIONS(1654), + [anon_sym_offsetof] = ACTIONS(1654), + [anon_sym__Generic] = ACTIONS(1654), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1652), + [anon_sym_L_SQUOTE] = ACTIONS(1652), + [anon_sym_u_SQUOTE] = ACTIONS(1652), + [anon_sym_U_SQUOTE] = ACTIONS(1652), + [anon_sym_u8_SQUOTE] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_L_DQUOTE] = ACTIONS(1652), + [anon_sym_u_DQUOTE] = ACTIONS(1652), + [anon_sym_U_DQUOTE] = ACTIONS(1652), + [anon_sym_u8_DQUOTE] = ACTIONS(1652), + [anon_sym_DQUOTE] = ACTIONS(1652), + [sym_true] = ACTIONS(1654), + [sym_false] = ACTIONS(1654), + [anon_sym_NULL] = ACTIONS(1654), + [anon_sym_nullptr] = ACTIONS(1654), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 30, + [0] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1667), 1, + aux_sym_preproc_if_token2, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1742), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(532), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [118] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1677), 1, + anon_sym_STAR, + ACTIONS(1679), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1020), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(777), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [230] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + ACTIONS(1683), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1670), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(512), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [348] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + ACTIONS(1685), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1660), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(511), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [466] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1687), 1, + anon_sym_STAR, + ACTIONS(1689), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1028), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(505), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [578] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + ACTIONS(1691), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1822), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(521), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [696] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1693), 1, + anon_sym_STAR, + ACTIONS(1695), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1037), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(777), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [808] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + ACTIONS(1697), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1695), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(532), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [926] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + ACTIONS(1699), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1652), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(532), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1044] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1701), 1, + anon_sym_STAR, + ACTIONS(1703), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1053), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(777), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1156] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1705), 1, + anon_sym_STAR, + ACTIONS(1707), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1031), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(777), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1268] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1709), 1, + anon_sym_STAR, + ACTIONS(1711), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1025), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(514), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1380] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + ACTIONS(1713), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1769), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(504), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1498] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1715), 1, + anon_sym_STAR, + ACTIONS(1717), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1023), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(510), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1610] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1719), 1, + anon_sym_STAR, + ACTIONS(1721), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1040), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(513), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1722] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1723), 1, + sym_identifier, + ACTIONS(1725), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_RPAREN, + ACTIONS(1729), 1, + anon_sym_LPAREN2, + ACTIONS(1731), 1, + anon_sym_STAR, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(1735), 1, + anon_sym_LBRACK, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1191), 1, + sym__declaration_specifiers, + STATE(1350), 1, + sym__declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1415), 1, + sym__abstract_declarator, + STATE(1791), 1, + sym_ms_based_modifier, + STATE(1461), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [1846] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1737), 1, + anon_sym_STAR, + ACTIONS(1739), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1026), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(777), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1958] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1663), 1, + aux_sym_preproc_def_token1, + ACTIONS(1665), 1, + aux_sym_preproc_if_token1, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1675), 1, + sym_preproc_directive, + ACTIONS(1741), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(115), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1669), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1846), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(532), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2076] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_AMP, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(1743), 1, + anon_sym_STAR, + ACTIONS(1745), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(1034), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(520), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1681), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2188] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1747), 1, + anon_sym_COMMA, + ACTIONS(1749), 1, + anon_sym_RBRACE, + ACTIONS(1751), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_DOT, + STATE(716), 1, + sym_string_literal, + STATE(937), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(1441), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1373), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2305] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1751), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_DOT, + ACTIONS(1755), 1, + anon_sym_RBRACE, + STATE(716), 1, + sym_string_literal, + STATE(952), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(1555), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1373), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2419] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1751), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_DOT, + ACTIONS(1757), 1, + anon_sym_RBRACE, + STATE(716), 1, + sym_string_literal, + STATE(952), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(1555), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1373), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2533] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1763), 1, + aux_sym_preproc_if_token2, + ACTIONS(1767), 1, + sym_preproc_directive, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1755), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(530), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2646] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1751), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_DOT, + STATE(716), 1, + sym_string_literal, + STATE(952), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + STATE(1555), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1373), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2757] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1769), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1656), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(533), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2870] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1771), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1690), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(537), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2983] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1773), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1721), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(548), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3096] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1775), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1854), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(534), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3209] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1777), 1, + sym_identifier, + ACTIONS(1780), 1, + aux_sym_preproc_def_token1, + ACTIONS(1783), 1, + aux_sym_preproc_if_token1, + ACTIONS(1791), 1, + sym_preproc_directive, + ACTIONS(1797), 1, + anon_sym___attribute__, + ACTIONS(1800), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1803), 1, + anon_sym___declspec, + ACTIONS(1812), 1, + sym_primitive_type, + ACTIONS(1815), 1, + anon_sym_enum, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1821), 1, + anon_sym_union, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__declaration_specifiers, + ACTIONS(1788), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1786), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1794), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(1806), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(532), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3316] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1824), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1625), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(548), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3429] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1826), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1623), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(548), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3542] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1828), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1720), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(536), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3655] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1830), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1812), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(548), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3768] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1671), 1, + aux_sym_preproc_else_token1, + ACTIONS(1673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1759), 1, + aux_sym_preproc_def_token1, + ACTIONS(1761), 1, + aux_sym_preproc_if_token1, + ACTIONS(1767), 1, + sym_preproc_directive, + ACTIONS(1832), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__declaration_specifiers, + ACTIONS(1765), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1781), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(548), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3881] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1851), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1836), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [3961] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1855), 1, + anon_sym_SEMI, + ACTIONS(1858), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1836), 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, + ACTIONS(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4043] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1855), 1, + anon_sym_SEMI, + ACTIONS(1860), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1836), 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, + ACTIONS(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4125] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1851), 1, + anon_sym_COLON, + ACTIONS(1855), 1, + anon_sym_SEMI, + ACTIONS(1853), 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(1836), 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, + ACTIONS(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4207] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1855), 1, + anon_sym_SEMI, + ACTIONS(1862), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1836), 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, + ACTIONS(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4289] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1858), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1836), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4369] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1862), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1836), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4449] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1855), 1, + anon_sym_SEMI, + ACTIONS(1864), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1836), 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, + ACTIONS(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4531] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1860), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1836), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4611] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1864), 1, + anon_sym_COLON, + ACTIONS(1853), 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(1842), 12, + 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, + anon_sym_LBRACK, + ACTIONS(1836), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4691] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1777), 1, + sym_identifier, + ACTIONS(1797), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1800), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1803), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1812), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1815), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1821), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1434), 1, - sym_identifier, - ACTIONS(1436), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1438), 1, - anon_sym_RPAREN, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1442), 1, - anon_sym_STAR, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(1446), 1, - anon_sym_LBRACK, - STATE(746), 1, + ACTIONS(1866), 1, + aux_sym_preproc_def_token1, + ACTIONS(1869), 1, + aux_sym_preproc_if_token1, + ACTIONS(1875), 1, + sym_preproc_directive, + STATE(896), 1, sym__type_specifier, - STATE(800), 1, + STATE(920), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1006), 1, + STATE(1234), 1, sym__declaration_specifiers, - STATE(1164), 1, - sym__declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(1229), 1, - sym__abstract_declarator, - STATE(1514), 1, - sym_ms_based_modifier, - STATE(1331), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, + ACTIONS(1872), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1786), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1809), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, + STATE(1071), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 7, + ACTIONS(1794), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50620,637 +66541,618 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [121] = 26, + ACTIONS(1806), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(548), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [4796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1838), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1448), 1, - anon_sym_COMMA, - ACTIONS(1450), 1, - anon_sym_RBRACE, - ACTIONS(1452), 1, - anon_sym_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOT, - STATE(513), 1, - sym_string_literal, - STATE(773), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1853), 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(1842), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1836), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1242), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - STATE(1195), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(656), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [234] = 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4873] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(1452), 1, - anon_sym_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOT, - ACTIONS(1456), 1, - anon_sym_RBRACE, - STATE(513), 1, - sym_string_literal, - STATE(788), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1397), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - STATE(1195), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(656), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [344] = 23, + ACTIONS(1878), 1, + aux_sym_preproc_def_token1, + ACTIONS(1880), 1, + aux_sym_preproc_if_token1, + ACTIONS(1882), 1, + aux_sym_preproc_if_token2, + ACTIONS(1886), 1, + sym_preproc_directive, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1236), 1, + sym__declaration_specifiers, + ACTIONS(1884), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(551), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [4976] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1777), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1460), 1, - anon_sym_RBRACK, - STATE(513), 1, - sym_string_literal, - STATE(876), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(418), 2, + ACTIONS(1786), 1, + aux_sym_preproc_if_token2, + ACTIONS(1797), 1, + anon_sym___attribute__, + ACTIONS(1800), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1803), 1, + anon_sym___declspec, + ACTIONS(1812), 1, + sym_primitive_type, + ACTIONS(1815), 1, + anon_sym_enum, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1821), 1, + anon_sym_union, + ACTIONS(1888), 1, + aux_sym_preproc_def_token1, + ACTIONS(1891), 1, + aux_sym_preproc_if_token1, + ACTIONS(1897), 1, + sym_preproc_directive, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1236), 1, + sym__declaration_specifiers, + ACTIONS(1894), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1794), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1462), 6, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(1806), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [450] = 23, + anon_sym_noreturn, + STATE(551), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [5079] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1777), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1464), 1, - anon_sym_STAR, - ACTIONS(1466), 1, - anon_sym_RBRACK, - STATE(513), 1, - sym_string_literal, - STATE(884), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(414), 2, + ACTIONS(1797), 1, + anon_sym___attribute__, + ACTIONS(1800), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1803), 1, + anon_sym___declspec, + ACTIONS(1812), 1, + sym_primitive_type, + ACTIONS(1815), 1, + anon_sym_enum, + ACTIONS(1818), 1, + anon_sym_struct, + ACTIONS(1821), 1, + anon_sym_union, + ACTIONS(1900), 1, + aux_sym_preproc_def_token1, + ACTIONS(1903), 1, + aux_sym_preproc_if_token1, + ACTIONS(1909), 1, + sym_preproc_directive, + ACTIONS(1912), 1, + anon_sym_RBRACE, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1245), 1, + sym__declaration_specifiers, + ACTIONS(1906), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1794), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1462), 6, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(1806), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [556] = 23, + anon_sym_noreturn, + STATE(552), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [5182] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1468), 1, - anon_sym_STAR, - ACTIONS(1470), 1, - anon_sym_RBRACK, - STATE(513), 1, - sym_string_literal, - STATE(866), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(669), 2, + ACTIONS(1914), 1, + aux_sym_preproc_def_token1, + ACTIONS(1916), 1, + aux_sym_preproc_if_token1, + ACTIONS(1920), 1, + sym_preproc_directive, + ACTIONS(1922), 1, + anon_sym_RBRACE, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1245), 1, + sym__declaration_specifiers, + ACTIONS(1918), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1462), 6, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [662] = 23, + anon_sym_noreturn, + STATE(552), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [5285] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1472), 1, - anon_sym_STAR, - ACTIONS(1474), 1, - anon_sym_RBRACK, - STATE(513), 1, - sym_string_literal, - STATE(869), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(419), 2, + ACTIONS(1878), 1, + aux_sym_preproc_def_token1, + ACTIONS(1880), 1, + aux_sym_preproc_if_token1, + ACTIONS(1886), 1, + sym_preproc_directive, + ACTIONS(1924), 1, + aux_sym_preproc_if_token2, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1236), 1, + sym__declaration_specifiers, + ACTIONS(1884), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1462), 6, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [768] = 23, + anon_sym_noreturn, + STATE(550), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [5388] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1476), 1, - anon_sym_STAR, - ACTIONS(1478), 1, - anon_sym_RBRACK, - STATE(513), 1, - sym_string_literal, - STATE(872), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(411), 2, + ACTIONS(1914), 1, + aux_sym_preproc_def_token1, + ACTIONS(1916), 1, + aux_sym_preproc_if_token1, + ACTIONS(1920), 1, + sym_preproc_directive, + ACTIONS(1926), 1, + anon_sym_RBRACE, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1245), 1, + sym__declaration_specifiers, + ACTIONS(1918), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1462), 6, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [874] = 23, + anon_sym_noreturn, + STATE(553), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [5491] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1480), 1, - anon_sym_STAR, - ACTIONS(1482), 1, - anon_sym_RBRACK, - STATE(513), 1, + ACTIONS(1928), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(875), 1, + STATE(940), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, + STATE(1467), 1, + sym_compound_statement, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1410), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(669), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -51263,20 +67165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1462), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51290,94 +67185,96 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [980] = 23, + sym_null, + [5593] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(1402), 1, + ACTIONS(1725), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_RPAREN, + ACTIONS(1735), 1, + anon_sym_LBRACK, + ACTIONS(1930), 1, anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1484), 1, + ACTIONS(1932), 1, anon_sym_STAR, - ACTIONS(1486), 1, - anon_sym_RBRACK, - STATE(513), 1, - sym_string_literal, - STATE(855), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(417), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1462), 6, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1191), 1, + sym__declaration_specifiers, + STATE(1385), 1, + sym_parameter_list, + STATE(1415), 1, + sym__abstract_declarator, + STATE(1461), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [1086] = 25, + anon_sym_noreturn, + [5701] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -51386,20 +67283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1452), 1, - anon_sym_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOT, - ACTIONS(1488), 1, - anon_sym_RBRACE, - STATE(513), 1, + ACTIONS(1934), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(788), 1, + STATE(939), 1, sym__expression, + STATE(1517), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -51415,17 +67308,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - STATE(1397), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, - STATE(1195), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -51438,13 +67326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51458,50 +67346,51 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1196] = 23, + sym_null, + [5803] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1490), 1, - anon_sym_STAR, - ACTIONS(1492), 1, - anon_sym_RBRACK, - STATE(513), 1, + ACTIONS(1936), 1, + anon_sym_SEMI, + STATE(716), 1, sym_string_literal, - STATE(860), 1, + STATE(998), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, + STATE(1805), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1410), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(669), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -51514,20 +67403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1462), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51541,50 +67423,51 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1302] = 23, + sym_null, + [5902] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1494), 1, - anon_sym_STAR, - ACTIONS(1496), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(890), 1, + STATE(735), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, + STATE(738), 1, + sym_initializer_list, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1410), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(669), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -51597,20 +67480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1462), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51624,50 +67500,51 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1408] = 23, + sym_null, + [6001] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1408), 1, - anon_sym_AMP, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1498), 1, - anon_sym_STAR, - ACTIONS(1500), 1, - anon_sym_RBRACK, - STATE(513), 1, + ACTIONS(1938), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(854), 1, + STATE(1004), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, + STATE(1638), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1410), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(669), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(95), 3, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -51680,20 +67557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1462), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51707,7 +67577,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1514] = 24, + sym_null, + [6100] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51720,18 +67591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1452), 1, - anon_sym_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOT, - STATE(513), 1, + ACTIONS(1940), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(788), 1, + STATE(1018), 1, sym__expression, + STATE(1607), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -51747,17 +67616,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - STATE(1397), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, - STATE(1195), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -51770,13 +67634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51790,1950 +67654,1860 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [1621] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1508), 1, - aux_sym_preproc_if_token2, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1426), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(431), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1731] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1518), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1492), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1841] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1520), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1506), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1951] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1522), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1487), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2061] = 26, + sym_null, + [6199] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1524), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1491), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(432), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2171] = 26, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1942), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_string_literal, + STATE(986), 1, + sym__expression, + STATE(1704), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6298] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1526), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1471), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(422), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2281] = 26, + ACTIONS(1944), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(948), 1, + sym__expression, + STATE(1844), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6397] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1528), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1499), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(424), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2391] = 26, + ACTIONS(1946), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(947), 1, + sym__expression, + STATE(1847), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6496] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1530), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1608), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2501] = 26, + STATE(716), 1, + sym_string_literal, + STATE(996), 1, + sym__expression, + STATE(1579), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6595] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1532), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1600), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(428), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2611] = 26, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1948), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(1013), 1, + sym__expression, + STATE(1627), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6694] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1534), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1602), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2721] = 26, + ACTIONS(1950), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(1005), 1, + sym__expression, + STATE(1637), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6793] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1536), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1531), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2831] = 26, + ACTIONS(1952), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(1015), 1, + sym__expression, + STATE(1661), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6892] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1538), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1476), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2941] = 26, + ACTIONS(1954), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_string_literal, + STATE(1007), 1, + sym__expression, + STATE(1635), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6991] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1540), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1484), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(430), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3051] = 26, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1956), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_string_literal, + STATE(973), 1, + sym__expression, + STATE(1610), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7090] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1504), 1, - aux_sym_preproc_def_token1, - ACTIONS(1506), 1, - aux_sym_preproc_if_token1, - ACTIONS(1512), 1, - aux_sym_preproc_else_token1, - ACTIONS(1514), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1516), 1, - sym_preproc_directive, - ACTIONS(1542), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1510), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1530), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(423), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3161] = 10, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + STATE(716), 1, + sym_string_literal, + STATE(738), 1, + sym_initializer_list, + STATE(793), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(753), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7189] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, - anon_sym_STAR, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1561), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 12, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1958), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_string_literal, + STATE(991), 1, + sym__expression, + STATE(1776), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1546), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3238] = 11, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7288] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1960), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(951), 1, + sym__expression, + STATE(1810), 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, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1565), 1, - anon_sym_SEMI, - ACTIONS(1568), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1546), 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_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1552), 12, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7387] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1962), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(1010), 1, + sym__expression, + STATE(1632), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7486] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - [3317] = 11, + ACTIONS(1964), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(1002), 1, + sym__expression, + STATE(1765), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7585] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1966), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(1009), 1, + sym__expression, + STATE(1634), 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, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1561), 1, - anon_sym_COLON, - ACTIONS(1565), 1, - anon_sym_SEMI, - ACTIONS(1563), 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(1546), 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_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1552), 12, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7684] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1968), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(957), 1, + sym__expression, + STATE(1763), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3396] = 10, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7783] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, - anon_sym_STAR, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1568), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 12, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1970), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(1006), 1, + sym__expression, + STATE(1636), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1546), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3473] = 11, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7882] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, - anon_sym_STAR, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1565), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1972), 1, anon_sym_SEMI, - ACTIONS(1570), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1546), 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, - ACTIONS(1552), 12, + STATE(716), 1, + sym_string_literal, + STATE(990), 1, + sym__expression, + STATE(1700), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3552] = 11, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7981] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, - anon_sym_STAR, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1565), 1, - anon_sym_SEMI, - ACTIONS(1572), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1546), 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, - ACTIONS(1552), 12, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + STATE(716), 1, + sym_string_literal, + STATE(1000), 1, + sym__expression, + STATE(1597), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3631] = 10, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8080] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, - anon_sym_STAR, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1570), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 12, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1974), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(967), 1, + sym__expression, + STATE(1726), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1546), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3708] = 10, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8179] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, - anon_sym_STAR, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1572), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 12, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1625), 1, + sym_identifier, + STATE(716), 1, + sym_string_literal, + STATE(946), 1, + sym__expression, + STATE(1553), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1546), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3785] = 23, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8278] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1577), 1, - aux_sym_preproc_def_token1, - ACTIONS(1580), 1, - aux_sym_preproc_if_token1, - ACTIONS(1588), 1, - sym_preproc_directive, - ACTIONS(1594), 1, - anon_sym___attribute__, - ACTIONS(1597), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1600), 1, - anon_sym___declspec, - ACTIONS(1609), 1, - sym_primitive_type, - ACTIONS(1612), 1, - anon_sym_enum, - ACTIONS(1615), 1, - anon_sym_struct, - ACTIONS(1618), 1, - anon_sym_union, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1078), 1, - sym__declaration_specifiers, - ACTIONS(1585), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1583), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1606), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1591), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1603), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(443), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3887] = 9, + ACTIONS(1976), 1, + anon_sym_RPAREN, + STATE(716), 1, + sym_string_literal, + STATE(970), 1, + sym__expression, + STATE(1719), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8377] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1554), 1, - anon_sym_STAR, - ACTIONS(1557), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1563), 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(1552), 12, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1978), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_string_literal, + STATE(992), 1, + sym__expression, + STATE(1698), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1546), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [3961] = 23, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8476] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1621), 1, - aux_sym_preproc_def_token1, - ACTIONS(1623), 1, - aux_sym_preproc_if_token1, - ACTIONS(1625), 1, - aux_sym_preproc_if_token2, - ACTIONS(1629), 1, - sym_preproc_directive, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1079), 1, - sym__declaration_specifiers, - ACTIONS(1627), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(450), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4061] = 22, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(1980), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_string_literal, + STATE(987), 1, + sym__expression, + STATE(1703), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8575] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -53742,16 +69516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1982), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(735), 1, + STATE(975), 1, sym__expression, - STATE(1325), 1, - sym_compound_statement, + STATE(1711), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53767,10 +69541,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -53783,13 +69559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53803,13 +69579,12 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4159] = 22, + sym_null, + [8674] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -53818,16 +69593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1633), 1, + ACTIONS(1984), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(738), 1, + STATE(1003), 1, sym__expression, - STATE(1241), 1, - sym_compound_statement, + STATE(1639), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53843,10 +69618,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -53859,13 +69636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53879,392 +69656,162 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4257] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1574), 1, - sym_identifier, - ACTIONS(1594), 1, - anon_sym___attribute__, - ACTIONS(1597), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1600), 1, - anon_sym___declspec, - ACTIONS(1609), 1, - sym_primitive_type, - ACTIONS(1612), 1, - anon_sym_enum, - ACTIONS(1615), 1, - anon_sym_struct, - ACTIONS(1618), 1, - anon_sym_union, - ACTIONS(1635), 1, - aux_sym_preproc_def_token1, - ACTIONS(1638), 1, - aux_sym_preproc_if_token1, - ACTIONS(1644), 1, - sym_preproc_directive, - ACTIONS(1647), 1, - anon_sym_RBRACE, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1070), 1, - sym__declaration_specifiers, - ACTIONS(1641), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1606), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1591), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1603), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(448), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4357] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1574), 1, - sym_identifier, - ACTIONS(1583), 1, - aux_sym_preproc_if_token2, - ACTIONS(1594), 1, - anon_sym___attribute__, - ACTIONS(1597), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1600), 1, - anon_sym___declspec, - ACTIONS(1609), 1, - sym_primitive_type, - ACTIONS(1612), 1, - anon_sym_enum, - ACTIONS(1615), 1, - anon_sym_struct, - ACTIONS(1618), 1, - anon_sym_union, - ACTIONS(1649), 1, - aux_sym_preproc_def_token1, - ACTIONS(1652), 1, - aux_sym_preproc_if_token1, - ACTIONS(1658), 1, - sym_preproc_directive, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1079), 1, - sym__declaration_specifiers, - ACTIONS(1655), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1606), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1591), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1603), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(449), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4457] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1621), 1, - aux_sym_preproc_def_token1, - ACTIONS(1623), 1, - aux_sym_preproc_if_token1, - ACTIONS(1629), 1, - sym_preproc_directive, - ACTIONS(1661), 1, - aux_sym_preproc_if_token2, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1079), 1, - sym__declaration_specifiers, - ACTIONS(1627), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(449), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4557] = 23, + sym_null, + [8773] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1663), 1, - aux_sym_preproc_def_token1, - ACTIONS(1665), 1, - aux_sym_preproc_if_token1, - ACTIONS(1669), 1, - sym_preproc_directive, - ACTIONS(1671), 1, - anon_sym_RBRACE, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1070), 1, - sym__declaration_specifiers, - ACTIONS(1667), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(452), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4657] = 23, + ACTIONS(1986), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_string_literal, + STATE(989), 1, + sym__expression, + STATE(1702), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8872] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1663), 1, - aux_sym_preproc_def_token1, - ACTIONS(1665), 1, - aux_sym_preproc_if_token1, - ACTIONS(1669), 1, - sym_preproc_directive, - ACTIONS(1673), 1, - anon_sym_RBRACE, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1070), 1, - sym__declaration_specifiers, - ACTIONS(1667), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - STATE(448), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4757] = 21, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, + sym_string_literal, + STATE(738), 1, + sym_initializer_list, + STATE(793), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8971] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54277,15 +69824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1675), 1, + ACTIONS(1988), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(834), 1, + STATE(955), 1, sym__expression, - STATE(1566), 1, + STATE(1750), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54302,10 +69849,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54318,13 +69867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54338,7 +69887,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4852] = 21, + sym_null, + [9070] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54351,15 +69901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1990), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(817), 1, + STATE(962), 1, sym__expression, - STATE(1577), 1, + STATE(1830), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54376,10 +69926,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54392,13 +69944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54412,7 +69964,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4947] = 21, + sym_null, + [9169] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54425,15 +69978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1679), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(1992), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(792), 1, + STATE(1014), 1, sym__expression, - STATE(1440), 1, + STATE(1667), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54450,10 +70003,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54466,13 +70021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54486,7 +70041,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5042] = 21, + sym_null, + [9268] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54499,15 +70055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1681), 1, + ACTIONS(1994), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(840), 1, + STATE(994), 1, sym__expression, - STATE(1544), 1, + STATE(1795), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54524,10 +70080,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54540,13 +70098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54560,48 +70118,51 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5137] = 21, + sym_null, + [9367] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1683), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(797), 1, + STATE(735), 1, sym__expression, - STATE(1584), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(738), 1, + sym_initializer_list, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54614,13 +70175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54634,7 +70195,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5232] = 21, + sym_null, + [9466] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54647,15 +70209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1685), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(1996), 1, + anon_sym_SEMI, + STATE(716), 1, sym_string_literal, - STATE(810), 1, + STATE(995), 1, sym__expression, - STATE(1548), 1, + STATE(1797), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54672,10 +70234,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54688,13 +70252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54708,7 +70272,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5327] = 21, + sym_null, + [9565] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54721,15 +70286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1687), 1, + ACTIONS(1998), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(837), 1, + STATE(988), 1, sym__expression, - STATE(1547), 1, + STATE(1850), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54746,10 +70311,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54762,13 +70329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54782,7 +70349,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5422] = 21, + sym_null, + [9664] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54795,16 +70363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + ACTIONS(2000), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(815), 1, + STATE(949), 1, sym__expression, - STATE(1376), 1, - sym_initializer_list, + STATE(1823), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54820,10 +70388,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54836,13 +70406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54856,7 +70426,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5517] = 21, + sym_null, + [9763] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54869,15 +70440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1689), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(2002), 1, + anon_sym_SEMI, + STATE(716), 1, sym_string_literal, - STATE(795), 1, + STATE(983), 1, sym__expression, - STATE(1430), 1, + STATE(1678), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54894,10 +70465,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54910,13 +70483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54930,7 +70503,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5612] = 21, + sym_null, + [9862] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54943,15 +70517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(2004), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(805), 1, + STATE(1011), 1, sym__expression, - STATE(1605), 1, + STATE(1622), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54968,10 +70542,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -54984,13 +70560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55004,7 +70580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5707] = 21, + sym_null, + [9961] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55017,15 +70594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(2006), 1, + anon_sym_SEMI, + STATE(716), 1, sym_string_literal, - STATE(807), 1, + STATE(966), 1, sym__expression, - STATE(1408), 1, + STATE(1747), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55042,10 +70619,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55058,13 +70637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55078,86 +70657,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5802] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1436), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1438), 1, - anon_sym_RPAREN, - ACTIONS(1446), 1, - anon_sym_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(1697), 1, - anon_sym_STAR, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1006), 1, - sym__declaration_specifiers, - STATE(1210), 1, - sym_parameter_list, - STATE(1229), 1, - sym__abstract_declarator, - STATE(1331), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - [5907] = 21, + sym_null, + [10060] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55170,15 +70671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(2008), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(821), 1, + STATE(950), 1, sym__expression, - STATE(1427), 1, + STATE(1814), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55195,10 +70696,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55211,13 +70714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55231,7 +70734,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6002] = 21, + sym_null, + [10159] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55244,15 +70748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1701), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(2010), 1, + anon_sym_SEMI, + STATE(716), 1, sym_string_literal, - STATE(825), 1, + STATE(985), 1, sym__expression, - STATE(1429), 1, + STATE(1771), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55269,10 +70773,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55285,13 +70791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55305,7 +70811,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6097] = 21, + sym_null, + [10258] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55318,15 +70825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1703), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(2012), 1, + anon_sym_SEMI, + STATE(716), 1, sym_string_literal, - STATE(835), 1, + STATE(979), 1, sym__expression, - STATE(1483), 1, + STATE(1715), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55343,10 +70850,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55359,13 +70868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55379,7 +70888,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6192] = 21, + sym_null, + [10357] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55392,15 +70902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1705), 1, + ACTIONS(2014), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(791), 1, + STATE(999), 1, sym__expression, - STATE(1445), 1, + STATE(1800), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55417,10 +70927,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55433,13 +70945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55453,81 +70965,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6287] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(634), 1, - sym__expression, - STATE(638), 1, - sym_initializer_list, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6382] = 21, + [10456] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55540,15 +70979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1707), 1, + ACTIONS(2016), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(804), 1, + STATE(969), 1, sym__expression, - STATE(1604), 1, + STATE(1628), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55565,10 +71004,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55581,13 +71022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55601,7 +71042,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6477] = 21, + sym_null, + [10555] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55614,16 +71056,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + ACTIONS(2018), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(812), 1, + STATE(971), 1, sym__expression, - STATE(1356), 1, - sym_initializer_list, + STATE(1718), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -55639,10 +71081,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55655,13 +71099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55675,7 +71119,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6572] = 21, + sym_null, + [10654] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55688,15 +71133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(2020), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(814), 1, + STATE(1017), 1, sym__expression, - STATE(1425), 1, + STATE(1630), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55713,10 +71158,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55729,13 +71176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55749,7 +71196,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6667] = 21, + sym_null, + [10753] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55762,15 +71210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1711), 1, + ACTIONS(2022), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(803), 1, + STATE(1016), 1, sym__expression, - STATE(1553), 1, + STATE(1644), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55787,10 +71235,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55803,13 +71253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55823,7 +71273,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6762] = 21, + sym_null, + [10852] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55836,15 +71287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1713), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(2024), 1, + anon_sym_RPAREN, + STATE(716), 1, sym_string_literal, - STATE(831), 1, + STATE(963), 1, sym__expression, - STATE(1568), 1, + STATE(1785), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55861,10 +71312,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55877,13 +71330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55897,7 +71350,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6857] = 21, + sym_null, + [10951] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55910,15 +71364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1715), 1, + ACTIONS(2026), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(829), 1, + STATE(993), 1, sym__expression, - STATE(1571), 1, + STATE(1773), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55935,10 +71389,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -55951,13 +71407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55971,7 +71427,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6952] = 21, + sym_null, + [11050] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55984,15 +71441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1717), 1, + ACTIONS(2028), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(793), 1, + STATE(968), 1, sym__expression, - STATE(1545), 1, + STATE(1745), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56009,10 +71466,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56025,13 +71484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56045,7 +71504,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7047] = 21, + sym_null, + [11149] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56058,15 +71518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1719), 1, + ACTIONS(2030), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(801), 1, + STATE(965), 1, sym__expression, - STATE(1555), 1, + STATE(1663), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56083,10 +71543,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56099,13 +71561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56119,7 +71581,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7142] = 21, + sym_null, + [11248] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56132,15 +71595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1721), 1, + ACTIONS(2032), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(830), 1, + STATE(961), 1, sym__expression, - STATE(1496), 1, + STATE(1608), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56157,10 +71620,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56173,13 +71638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56193,7 +71658,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7237] = 21, + sym_null, + [11347] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56206,15 +71672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1723), 1, + ACTIONS(2034), 1, anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(806), 1, + STATE(958), 1, sym__expression, - STATE(1579), 1, + STATE(1735), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56231,10 +71697,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56247,13 +71715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56267,48 +71735,49 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7332] = 21, + sym_null, + [11446] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1725), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2036), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(824), 1, + STATE(799), 1, sym__expression, - STATE(1454), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56321,13 +71790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56341,7 +71810,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7427] = 21, + sym_null, + [11542] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56350,39 +71820,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - STATE(513), 1, + ACTIONS(2038), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(638), 1, - sym_initializer_list, - STATE(665), 1, + STATE(799), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56395,13 +71865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56415,7 +71885,83 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7522] = 21, + sym_null, + [11638] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(2040), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym_ms_call_modifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1250), 1, + sym__declaration_specifiers, + STATE(147), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [11734] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56428,15 +71974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1727), 1, - anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(786), 1, + STATE(944), 1, sym__expression, - STATE(1417), 1, + STATE(1818), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56453,10 +71997,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56469,13 +72015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56489,7 +72035,158 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7617] = 21, + sym_null, + [11830] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(2042), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_ms_call_modifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1241), 1, + sym__declaration_specifiers, + STATE(456), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [11926] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(2044), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_ms_call_modifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1251), 1, + sym__declaration_specifiers, + STATE(203), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [12022] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56502,16 +72199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1729), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(2046), 1, + anon_sym_COLON, + STATE(716), 1, sym_string_literal, - STATE(836), 1, + STATE(1057), 1, sym__expression, - STATE(1598), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -56527,10 +72222,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56543,13 +72240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56563,7 +72260,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7712] = 21, + sym_null, + [12118] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -56572,39 +72270,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1400), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1402), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - STATE(513), 1, + ACTIONS(2048), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(638), 1, - sym_initializer_list, - STATE(665), 1, + STATE(799), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1408), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1410), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56617,13 +72315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56637,48 +72335,124 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7807] = 21, + sym_null, + [12214] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1731), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2050), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(832), 1, + STATE(799), 1, sym__expression, - STATE(1460), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(753), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [12310] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1090), 1, + sym_identifier, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, + anon_sym_RBRACK, + STATE(716), 1, + sym_string_literal, + STATE(799), 1, + sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56691,13 +72465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56711,7 +72485,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7902] = 21, + sym_null, + [12406] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56724,16 +72499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1733), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(2054), 1, + anon_sym_COLON, + STATE(716), 1, sym_string_literal, - STATE(785), 1, + STATE(1041), 1, sym__expression, - STATE(1495), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -56749,10 +72522,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56765,13 +72540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56785,7 +72560,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7997] = 21, + sym_null, + [12502] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56798,15 +72574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1735), 1, - anon_sym_SEMI, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(798), 1, + STATE(978), 1, sym__expression, - STATE(1588), 1, + STATE(1716), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56823,10 +72597,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56839,13 +72615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56859,7 +72635,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8092] = 21, + sym_null, + [12598] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56872,16 +72649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1737), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(2056), 1, + anon_sym_COLON, + STATE(716), 1, sym_string_literal, - STATE(827), 1, + STATE(1038), 1, sym__expression, - STATE(1497), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -56897,10 +72672,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56913,13 +72690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56933,7 +72710,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8187] = 21, + sym_null, + [12694] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56946,16 +72724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + ACTIONS(2058), 1, + anon_sym_COLON, + STATE(716), 1, sym_string_literal, - STATE(634), 1, + STATE(1054), 1, sym__expression, - STATE(638), 1, - sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -56971,10 +72747,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -56987,13 +72765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57007,48 +72785,124 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8282] = 21, + sym_null, + [12790] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(2060), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_ms_call_modifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + STATE(335), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [12886] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1739), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2062), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(841), 1, + STATE(799), 1, sym__expression, - STATE(1541), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57061,13 +72915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57081,48 +72935,49 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8377] = 21, + sym_null, + [12982] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1741), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2064), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(816), 1, + STATE(799), 1, sym__expression, - STATE(1559), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57135,13 +72990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57155,48 +73010,49 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8472] = 21, + sym_null, + [13078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1743), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2066), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(808), 1, + STATE(799), 1, sym__expression, - STATE(1428), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57209,13 +73065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57229,7 +73085,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8567] = 21, + sym_null, + [13174] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57242,15 +73099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(813), 1, + STATE(936), 1, sym__expression, - STATE(1420), 1, + STATE(1564), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57267,10 +73122,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57283,13 +73140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57303,48 +73160,124 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8662] = 21, + sym_null, + [13270] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(2068), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_ms_call_modifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1243), 1, + sym__declaration_specifiers, + STATE(455), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [13366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1747), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2070), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(823), 1, + STATE(799), 1, sym__expression, - STATE(1501), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57357,13 +73290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57377,48 +73310,49 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8757] = 21, + sym_null, + [13462] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1749), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + ACTIONS(2072), 1, + anon_sym_RBRACK, + STATE(716), 1, sym_string_literal, - STATE(839), 1, + STATE(799), 1, sym__expression, - STATE(1472), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57431,13 +73365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57451,48 +73385,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8852] = 21, + sym_null, + [13558] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1647), 1, + anon_sym_sizeof, + ACTIONS(2074), 1, + anon_sym_LPAREN2, + STATE(716), 1, sym_string_literal, - STATE(833), 1, + STATE(1024), 1, sym__expression, - STATE(1346), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57505,13 +73438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57525,48 +73458,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8947] = 21, + sym_null, + [13651] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1751), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(843), 1, + STATE(1050), 1, sym__expression, - STATE(1542), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57579,13 +73511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57599,48 +73531,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9042] = 21, + sym_null, + [13744] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1753), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(802), 1, + STATE(804), 1, sym__expression, - STATE(1603), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57653,13 +73584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57673,7 +73604,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9137] = 21, + sym_null, + [13837] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57686,16 +73618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1755), 1, - anon_sym_RPAREN, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(838), 1, + STATE(930), 1, sym__expression, - STATE(1432), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -57711,10 +73639,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57727,13 +73657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57747,48 +73677,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9232] = 21, + sym_null, + [13930] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1757), 1, - anon_sym_RPAREN, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(842), 1, + STATE(795), 1, sym__expression, - STATE(1477), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57801,13 +73730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57821,46 +73750,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9327] = 20, + sym_null, + [14023] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - ACTIONS(1759), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(1036), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57873,13 +73803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57893,46 +73823,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9419] = 20, + sym_null, + [14116] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1761), 1, - anon_sym_COLON, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(863), 1, + STATE(791), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -57945,13 +73876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57965,46 +73896,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9511] = 20, + sym_null, + [14209] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_COLON, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(885), 1, + STATE(803), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58017,13 +73949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58037,7 +73969,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9603] = 20, + sym_null, + [14302] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58046,37 +73979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - ACTIONS(1765), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(806), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58089,13 +74022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58109,46 +74042,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9695] = 20, + sym_null, + [14395] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(828), 1, + STATE(808), 1, sym__expression, - STATE(1575), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58161,13 +74095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58181,65 +74115,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9787] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - sym_identifier, - STATE(515), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1771), 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(1769), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT, - anon_sym_DASH_GT, - [9851] = 20, + sym_null, + [14488] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58248,37 +74125,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - ACTIONS(1773), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(800), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58291,13 +74168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58311,46 +74188,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9943] = 20, + sym_null, + [14581] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(1027), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58363,13 +74241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58383,7 +74261,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10035] = 20, + sym_null, + [14674] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -58396,13 +74275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1777), 1, - anon_sym_COLON, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(870), 1, + STATE(912), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -58419,10 +74296,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58435,13 +74314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58455,7 +74334,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10127] = 20, + sym_null, + [14767] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58464,37 +74344,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - ACTIONS(1779), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(805), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58507,13 +74387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58527,7 +74407,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10219] = 20, + sym_null, + [14860] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58536,37 +74417,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - ACTIONS(1781), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(796), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58579,13 +74460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58599,7 +74480,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10311] = 20, + sym_null, + [14953] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -58608,37 +74490,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - ACTIONS(1783), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(797), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58651,13 +74533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58671,69 +74553,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10403] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - sym_identifier, - STATE(506), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1552), 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(1546), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT, - anon_sym_DASH_GT, - [10467] = 20, + sym_null, + [15046] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, @@ -58742,14 +74565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + ACTIONS(2076), 1, + anon_sym_LPAREN2, + STATE(716), 1, sym_string_literal, - STATE(741), 1, + STATE(909), 1, sym__expression, - STATE(1378), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -58765,10 +74588,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58781,13 +74606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58801,104 +74626,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10559] = 6, + sym_null, + [15139] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1787), 1, - sym_identifier, - STATE(515), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1794), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1792), 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(1790), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(19), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_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_DOT, - anon_sym_DASH_GT, - [10623] = 20, - ACTIONS(3), 1, - sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - ACTIONS(1797), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(1001), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58911,13 +74679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58931,46 +74699,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10715] = 20, + sym_null, + [15232] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1799), 1, - anon_sym_COLON, - STATE(513), 1, + ACTIONS(1342), 1, + anon_sym_LPAREN2, + ACTIONS(1352), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(851), 1, + STATE(794), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1346), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1350), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -58983,13 +74752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59003,7 +74772,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10807] = 20, + sym_null, + [15325] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59012,37 +74782,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - ACTIONS(1801), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(792), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59055,13 +74825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59075,7 +74845,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10899] = 20, + sym_null, + [15418] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59084,37 +74855,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - ACTIONS(1803), 1, - anon_sym_RBRACK, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(798), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59127,13 +74898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59147,46 +74918,120 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10991] = 20, + sym_null, + [15511] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(826), 1, + STATE(1059), 1, sym__expression, - STATE(1457), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15604] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1090), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, + sym_string_literal, + STATE(742), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59199,13 +75044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59219,79 +75064,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11083] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_ms_call_modifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1072), 1, - sym__declaration_specifiers, - STATE(366), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - [11176] = 19, + sym_null, + [15697] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59300,15 +75074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1094), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1108), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(632), 1, + STATE(743), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -59316,19 +75090,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1098), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1106), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59341,13 +75117,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59361,7 +75137,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11265] = 19, + sym_null, + [15790] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59370,15 +75147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(912), 1, - anon_sym_sizeof, - ACTIONS(1807), 1, + ACTIONS(1094), 1, anon_sym_LPAREN2, - STATE(513), 1, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(641), 1, + STATE(737), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -59386,19 +75163,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1098), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1106), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59411,13 +75190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59431,7 +75210,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11354] = 19, + sym_null, + [15883] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59444,11 +75224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(654), 1, + STATE(1042), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59465,10 +75245,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59481,13 +75263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59501,7 +75283,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11443] = 19, + sym_null, + [15976] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -59510,15 +75293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1108), 1, anon_sym_sizeof, - STATE(513), 1, + ACTIONS(2078), 1, + anon_sym_LPAREN2, + STATE(716), 1, sym_string_literal, - STATE(653), 1, + STATE(762), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -59526,19 +75309,94 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1098), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1106), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(753), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16069] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + STATE(716), 1, + sym_string_literal, + STATE(917), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59551,13 +75409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59571,7 +75429,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11532] = 19, + sym_null, + [16162] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59584,11 +75443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(882), 1, + STATE(772), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59605,10 +75464,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59621,13 +75482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59641,7 +75502,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11621] = 19, + sym_null, + [16255] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59654,11 +75516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(856), 1, + STATE(908), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59675,10 +75537,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59691,13 +75555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59711,44 +75575,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11710] = 19, + sym_null, + [16348] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(715), 1, + STATE(1058), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59761,13 +75628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59781,44 +75648,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11799] = 19, + sym_null, + [16441] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(650), 1, + STATE(749), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59831,13 +75701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59851,7 +75721,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11888] = 19, + sym_null, + [16534] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59864,11 +75735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(820), 1, + STATE(919), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59885,10 +75756,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59901,13 +75774,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59921,44 +75794,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11977] = 19, + sym_null, + [16627] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(654), 1, + STATE(1019), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -59971,13 +75847,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59991,44 +75867,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12066] = 19, + sym_null, + [16720] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1809), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - STATE(513), 1, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(707), 1, + STATE(801), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60041,13 +75920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60061,116 +75940,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12155] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1811), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym_ms_call_modifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1080), 1, - sym__declaration_specifiers, - STATE(356), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - [12248] = 19, + sym_null, + [16813] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(859), 1, + STATE(746), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60183,13 +75993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60203,79 +76013,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12337] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1813), 1, - anon_sym_LBRACE, - STATE(683), 1, - sym_ms_call_modifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1076), 1, - sym__declaration_specifiers, - STATE(205), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - [12430] = 19, + sym_null, + [16906] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60288,11 +76027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(862), 1, + STATE(1039), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60309,10 +76048,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60325,13 +76066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60345,7 +76086,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12519] = 19, + sym_null, + [16999] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60354,35 +76096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1647), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(615), 1, + STATE(1056), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60395,13 +76139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60415,44 +76159,120 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12608] = 19, + sym_null, + [17092] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(644), 1, + STATE(918), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17185] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, + sym_string_literal, + STATE(1055), 1, + sym__expression, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60465,13 +76285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60485,44 +76305,120 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12697] = 19, + sym_null, + [17278] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(614), 1, + STATE(1012), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(778), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17371] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1625), 1, + sym_identifier, + STATE(716), 1, + sym_string_literal, + STATE(911), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60535,13 +76431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60555,7 +76451,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12786] = 19, + sym_null, + [17464] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60568,11 +76465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(787), 1, + STATE(1035), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60589,10 +76486,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60605,13 +76504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60625,7 +76524,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12875] = 19, + sym_null, + [17557] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60634,35 +76534,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1412), 1, - anon_sym_sizeof, - ACTIONS(1815), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - STATE(513), 1, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(867), 1, + STATE(1051), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1410), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60675,13 +76577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60695,7 +76597,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12964] = 19, + sym_null, + [17650] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60704,35 +76607,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1402), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, + ACTIONS(1647), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(679), 1, + STATE(1048), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1410), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60745,13 +76650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60765,7 +76670,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13053] = 19, + sym_null, + [17743] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60774,35 +76680,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(677), 1, + STATE(801), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60815,13 +76723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60835,44 +76743,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13142] = 19, + sym_null, + [17836] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(664), 1, + STATE(915), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1408), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1410), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60885,13 +76796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60905,44 +76816,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13231] = 19, + sym_null, + [17929] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(612), 1, + STATE(914), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -60955,13 +76869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60975,7 +76889,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13320] = 19, + sym_null, + [18022] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -60984,35 +76899,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1647), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(611), 1, + STATE(1049), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61025,13 +76942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61045,7 +76962,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13409] = 19, + sym_null, + [18115] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -61054,35 +76972,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1342), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(635), 1, + STATE(799), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61095,13 +77015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61115,79 +77035,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13498] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1817), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_ms_call_modifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1075), 1, - sym__declaration_specifiers, - STATE(365), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - [13591] = 19, + sym_null, + [18208] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61200,11 +77049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(878), 1, + STATE(737), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61221,10 +77070,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61237,13 +77088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61257,7 +77108,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13680] = 19, + sym_null, + [18301] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -61266,35 +77118,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1352), 1, anon_sym_sizeof, - STATE(513), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN2, + STATE(716), 1, sym_string_literal, - STATE(647), 1, + STATE(802), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1344), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1346), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1350), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61307,13 +77161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61327,7 +77181,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13769] = 19, + sym_null, + [18394] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61340,11 +77195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(819), 1, + STATE(910), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61361,10 +77216,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61377,13 +77234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61397,7 +77254,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13858] = 19, + sym_null, + [18487] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -61406,35 +77264,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1647), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(648), 1, + STATE(804), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61447,13 +77307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61467,7 +77327,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13947] = 19, + sym_null, + [18580] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61480,11 +77341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(846), 1, + STATE(976), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61501,10 +77362,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61517,13 +77380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61537,44 +77400,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14036] = 19, + sym_null, + [18673] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(847), 1, + STATE(1052), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61587,13 +77453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61607,44 +77473,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14125] = 19, + sym_null, + [18766] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(898), 1, - anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(655), 1, + STATE(1021), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61657,13 +77526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61677,44 +77546,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14214] = 19, + sym_null, + [18859] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(694), 1, + STATE(1043), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61727,13 +77599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61747,7 +77619,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14303] = 19, + sym_null, + [18952] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -61756,35 +77629,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1078), 1, - anon_sym_sizeof, - ACTIONS(1819), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - STATE(513), 1, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(676), 1, + STATE(1047), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61797,13 +77672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61817,44 +77692,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14392] = 19, + sym_null, + [19045] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(679), 1, + STATE(913), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61867,13 +77745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61887,44 +77765,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14481] = 19, + sym_null, + [19138] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(664), 1, + STATE(907), 1, sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -61937,13 +77818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -61957,7 +77838,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14570] = 19, + sym_null, + [19231] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -61966,35 +77848,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1647), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(666), 1, + STATE(800), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62007,13 +77891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62027,7 +77911,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14659] = 19, + sym_null, + [19324] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -62036,35 +77921,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(1068), 1, + ACTIONS(1637), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, + ACTIONS(1647), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(672), 1, + STATE(1046), 1, sym__expression, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, + ACTIONS(1641), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62077,13 +77964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(810), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62097,44 +77984,120 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14748] = 19, + sym_null, + [19417] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(711), 1, + STATE(1033), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [19510] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1090), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, + sym_string_literal, + STATE(751), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62147,13 +78110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62167,44 +78130,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14837] = 19, + sym_null, + [19603] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(644), 1, + STATE(754), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62217,13 +78183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62237,44 +78203,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14926] = 19, + sym_null, + [19696] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(712), 1, + STATE(755), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62287,13 +78256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62307,7 +78276,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15015] = 19, + sym_null, + [19789] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -62316,15 +78286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(894), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(898), 1, + ACTIONS(1094), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, + ACTIONS(1108), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(650), 1, + STATE(756), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -62332,19 +78302,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(900), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(902), 2, + ACTIONS(1098), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(1106), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62357,13 +78329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62377,44 +78349,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15104] = 19, + sym_null, + [19882] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(713), 1, + STATE(757), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62427,13 +78402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62447,7 +78422,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15193] = 19, + sym_null, + [19975] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -62456,35 +78432,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1402), 1, + ACTIONS(1094), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, + ACTIONS(1108), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(888), 1, + STATE(758), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, + ACTIONS(1098), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1408), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1410), 2, + ACTIONS(1106), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(753), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [20068] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(89), 1, + sym_number_literal, + ACTIONS(1090), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, + sym_string_literal, + STATE(759), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62497,13 +78548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62517,7 +78568,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15282] = 19, + sym_null, + [20161] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62530,11 +78582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(719), 1, + STATE(916), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62551,10 +78603,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62567,13 +78621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62587,44 +78641,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15371] = 19, + sym_null, + [20254] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(727), 1, + STATE(760), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62637,13 +78694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62657,7 +78714,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15460] = 19, + sym_null, + [20347] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62670,11 +78728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(726), 1, + STATE(742), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62691,10 +78749,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62707,13 +78767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62727,44 +78787,47 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15549] = 19, + sym_null, + [20440] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1090), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN2, + ACTIONS(1108), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(725), 1, + STATE(772), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1098), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1106), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62777,13 +78840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62797,7 +78860,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15638] = 19, + sym_null, + [20533] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -62806,35 +78870,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1400), 1, + ACTIONS(1090), 1, sym_identifier, - ACTIONS(1402), 1, + ACTIONS(1094), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, + ACTIONS(1108), 1, anon_sym_sizeof, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(881), 1, + STATE(761), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1096), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, + ACTIONS(1098), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1408), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1410), 2, + ACTIONS(1106), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62847,13 +78913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, + STATE(753), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62867,7 +78933,8 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15727] = 19, + sym_null, + [20626] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62880,11 +78947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1625), 1, sym_identifier, - STATE(513), 1, + STATE(716), 1, sym_string_literal, - STATE(724), 1, + STATE(1045), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62901,10 +78968,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 3, + ACTIONS(95), 2, sym_true, sym_false, - sym_null, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(91), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -62917,13 +78986,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, + STATE(778), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(649), 13, + STATE(764), 14, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -62937,1975 +79006,2461 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15816] = 19, + sym_null, + [20719] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, anon_sym_offsetof, ACTIONS(85), 1, anon_sym__Generic, ACTIONS(89), 1, sym_number_literal, - ACTIONS(1398), 1, + ACTIONS(1635), 1, sym_identifier, - STATE(513), 1, + ACTIONS(1637), 1, + anon_sym_LPAREN2, + ACTIONS(1647), 1, + anon_sym_sizeof, + STATE(716), 1, sym_string_literal, - STATE(723), 1, + STATE(1044), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(87), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + sym_true, + sym_false, + ACTIONS(97), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1641), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(810), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(764), 14, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [20812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 1, + sym_identifier, + STATE(717), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1842), 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(1836), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [20876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2084), 1, + sym_identifier, + STATE(718), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2088), 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(2086), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [20940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 1, + sym_identifier, + STATE(718), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2097), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2095), 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(2093), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [21004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(2102), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [21060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(2106), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [21116] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1834), 1, + anon_sym_const, + ACTIONS(1838), 1, + anon_sym_LPAREN2, + ACTIONS(1844), 1, + anon_sym_STAR, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1855), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1847), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1853), 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(1842), 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(1836), 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, + [21184] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1725), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1191), 1, + sym__declaration_specifiers, + STATE(1461), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [21271] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1725), 1, + anon_sym_DOT_DOT_DOT, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1191), 1, + sym__declaration_specifiers, + STATE(1594), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [21355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2110), 21, + anon_sym_LPAREN2, 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(79), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, + sym_number_literal, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(93), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(656), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [15905] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, + ACTIONS(2108), 23, + anon_sym_DASH, + anon_sym_PLUS, + 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_sizeof, anon_sym_offsetof, - ACTIONS(85), 1, anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(887), 1, - sym__expression, - ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1633), 21, + anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1410), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, + sym_number_literal, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(93), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [15994] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, + ACTIONS(1631), 23, + anon_sym_DASH, + anon_sym_PLUS, + 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_sizeof, anon_sym_offsetof, - ACTIONS(85), 1, anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(668), 1, - sym__expression, - ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1629), 21, + anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(93), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16083] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, + ACTIONS(1627), 23, + anon_sym_DASH, + anon_sym_PLUS, + 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_sizeof, anon_sym_offsetof, - ACTIONS(85), 1, anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(684), 1, - sym__expression, - ACTIONS(87), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1404), 2, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2108), 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(2110), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2114), 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(2112), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [21612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2118), 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(2116), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, + [21662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 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(2120), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [21712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2126), 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(2124), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [21762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 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(2128), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [21812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2134), 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(2132), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [21862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2136), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16172] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [21912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(675), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2144), 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, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16261] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2140), 22, + 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_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, + [21972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1398), 1, - sym_identifier, - STATE(513), 1, - sym_string_literal, - STATE(737), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2154), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2152), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(656), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16350] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [22022] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(889), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2158), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16439] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2156), 22, + 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_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, + [22082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(684), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(2162), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2160), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(1408), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + [22132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2166), 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, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16528] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2164), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [22182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(879), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2170), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2168), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16617] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [22232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(877), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2174), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2172), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16706] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [22282] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(873), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2178), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2176), 24, + 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_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16795] = 19, + [22340] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(662), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2186), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2188), 1, + anon_sym_AMP_AMP, + ACTIONS(2190), 1, + anon_sym_PIPE, + ACTIONS(2192), 1, + anon_sym_CARET, + ACTIONS(2194), 1, + anon_sym_AMP, + ACTIONS(2204), 1, + anon_sym_EQ, + ACTIONS(2206), 1, + anon_sym_QMARK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16884] = 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2180), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + 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, + [22424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(663), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(2210), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2208), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(1408), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + [22474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 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, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16973] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2212), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [22524] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(678), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2186), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2188), 1, + anon_sym_AMP_AMP, + ACTIONS(2190), 1, + anon_sym_PIPE, + ACTIONS(2192), 1, + anon_sym_CARET, + ACTIONS(2194), 1, + anon_sym_AMP, + ACTIONS(2206), 1, + anon_sym_QMARK, + ACTIONS(2218), 1, + anon_sym_EQ, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17062] = 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2216), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + 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, + [22608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(680), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(2222), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17151] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2220), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [22658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(681), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(2226), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17240] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2224), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [22708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(628), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17329] = 19, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2230), 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(2228), 22, + 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_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, + [22768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(865), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2234), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2232), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17418] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [22818] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(864), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, + ACTIONS(2184), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2238), 8, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17507] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2236), 22, + 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_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, + [22882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, - anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(682), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, + ACTIONS(2242), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17596] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2240), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, + anon_sym_DASH_GT, + [22932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(861), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(1842), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1836), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17685] = 19, + anon_sym_DOT, + anon_sym_DASH_GT, + [22982] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1068), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1078), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(674), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1072), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1076), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1408), 2, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2238), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17774] = 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2236), 22, + 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_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, + [23048] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(858), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2238), 4, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17863] = 19, + anon_sym_EQ, + ACTIONS(2236), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_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, + [23118] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(874), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2238), 4, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17952] = 19, + anon_sym_EQ, + ACTIONS(2236), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [23190] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(898), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(912), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(622), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2194), 1, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(902), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(910), 2, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(645), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [18041] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, - anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(857), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1410), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [18130] = 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2238), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2236), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [23264] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1402), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1412), 1, - anon_sym_sizeof, - STATE(513), 1, - sym_string_literal, - STATE(850), 1, - sym__expression, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1404), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1406), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1408), 2, - anon_sym_STAR, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2192), 1, + anon_sym_CARET, + ACTIONS(2194), 1, anon_sym_AMP, - ACTIONS(1410), 2, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(686), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [18219] = 19, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2238), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2236), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [23340] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym_offsetof, - ACTIONS(85), 1, - anon_sym__Generic, - ACTIONS(89), 1, - sym_number_literal, - ACTIONS(1398), 1, - sym_identifier, - STATE(513), 1, - sym_string_literal, - STATE(710), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2190), 1, + anon_sym_PIPE, + ACTIONS(2192), 1, + anon_sym_CARET, + ACTIONS(2194), 1, + anon_sym_AMP, + ACTIONS(2238), 1, + anon_sym_EQ, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2236), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [23418] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2188), 1, + anon_sym_AMP_AMP, + ACTIONS(2190), 1, + anon_sym_PIPE, + ACTIONS(2192), 1, + anon_sym_CARET, + ACTIONS(2194), 1, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2238), 1, + anon_sym_EQ, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(87), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(91), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(656), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(649), 13, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [18308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 14, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2182), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2236), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + 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, + [23498] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2238), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -64914,11 +81469,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1823), 34, + ACTIONS(2236), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -64927,8 +81480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64941,37 +81492,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [23560] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 14, + ACTIONS(2182), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2246), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1827), 34, + ACTIONS(2244), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -64980,8 +81535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -64994,35 +81547,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [23626] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2186), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2188), 1, + anon_sym_AMP_AMP, + ACTIONS(2190), 1, + anon_sym_PIPE, + ACTIONS(2192), 1, + anon_sym_CARET, + ACTIONS(2194), 1, + anon_sym_AMP, + ACTIONS(2250), 1, + anon_sym_EQ, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18420] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1548), 1, - anon_sym_LPAREN2, - ACTIONS(1554), 1, + ACTIONS(2182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2184), 3, anon_sym_STAR, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1565), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2248), 16, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1557), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(1563), 10, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -65033,9 +81610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 11, + [23708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1842), 13, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -65045,167 +81626,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1546), 12, + anon_sym_EQ, + ACTIONS(1836), 29, anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT, anon_sym_DASH_GT, - [18484] = 3, + [23758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 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(1414), 22, + ACTIONS(2254), 13, anon_sym_DASH, anon_sym_PLUS, - 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_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 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_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(1829), 22, - anon_sym_DASH, - anon_sym_PLUS, - 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_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 21, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2252), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_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, - 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(1418), 22, - anon_sym_DASH, - anon_sym_PLUS, - 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_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - sym_null, - sym_identifier, - [18637] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [23808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 13, + ACTIONS(2258), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65219,7 +81721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1831), 30, + ACTIONS(2256), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65230,7 +81732,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -65250,10 +81751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18688] = 3, + [23858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 13, + ACTIONS(2262), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65267,7 +81768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1833), 29, + ACTIONS(2260), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65297,10 +81798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18738] = 3, + [23908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 13, + ACTIONS(2266), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65314,7 +81815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1837), 29, + ACTIONS(2264), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65344,54 +81845,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18788] = 16, + [23958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, - anon_sym_CARET, - ACTIONS(1853), 1, - anon_sym_AMP, - ACTIONS(1863), 1, - anon_sym_LBRACK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(2270), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1849), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1855), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1857), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1859), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1861), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1841), 18, + anon_sym_EQ, + ACTIONS(2268), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_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, @@ -65404,55 +81888,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18864] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1849), 1, - anon_sym_EQ, - ACTIONS(1851), 1, - anon_sym_CARET, - ACTIONS(1853), 1, - anon_sym_AMP, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1869), 1, - anon_sym_PIPE, - STATE(624), 1, - sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(2274), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1855), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1857), 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(1859), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1861), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1841), 18, + anon_sym_EQ, + ACTIONS(2272), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_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, @@ -65465,10 +81935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18942] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 13, + ACTIONS(2278), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65482,7 +81956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1871), 29, + ACTIONS(2276), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65493,9 +81967,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, @@ -65512,54 +81986,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18992] = 18, + [24108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1849), 1, - anon_sym_EQ, - ACTIONS(1851), 1, - anon_sym_CARET, - ACTIONS(1853), 1, - anon_sym_AMP, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(1869), 1, - anon_sym_PIPE, - ACTIONS(1875), 1, - anon_sym_AMP_AMP, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1845), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1855), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1857), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1859), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1861), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2238), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1841), 17, + 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(2236), 22, 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_RBRACE, anon_sym_COLON, @@ -65574,28 +82038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19072] = 9, + [24168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2282), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1849), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -65604,9 +82055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1841), 22, + ACTIONS(2280), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -65615,6 +82067,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, @@ -65627,10 +82081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19134] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 13, + ACTIONS(2286), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65644,7 +82102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1877), 29, + ACTIONS(2284), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65674,102 +82132,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19184] = 19, + [24268] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1257), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [24345] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1270), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [24422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + STATE(777), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2292), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2288), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2290), 19, anon_sym_LPAREN2, - ACTIONS(1851), 1, - anon_sym_CARET, - ACTIONS(1853), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1869), 1, - anon_sym_PIPE, - ACTIONS(1875), 1, - anon_sym_AMP_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1885), 1, + 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, + [24475] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, anon_sym_EQ, - STATE(624), 1, - sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(1853), 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(1842), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1855), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1857), 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(1859), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1861), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1865), 2, + ACTIONS(1836), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1847), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1881), 16, + [24528] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1255), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [24605] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [24682] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + STATE(896), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1259), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(783), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [24759] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2302), 1, + anon_sym___attribute__, + ACTIONS(2305), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2308), 1, + anon_sym___declspec, + ACTIONS(2297), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, 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, - [19266] = 3, + ACTIONS(2299), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(782), 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(2311), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2295), 11, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24819] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1661), 1, + sym_identifier, + STATE(865), 1, + sym__type_specifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(782), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [24893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2316), 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_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1887), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_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(2314), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [24940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(1851), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1853), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -65780,14 +82699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 13, + ACTIONS(1842), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65800,10 +82712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1891), 29, + ACTIONS(1836), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -65812,58 +82722,20 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - [19366] = 3, + [24993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 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, + ACTIONS(1849), 1, anon_sym_EQ, - ACTIONS(1895), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, + ACTIONS(1860), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1853), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -65874,14 +82746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 13, + ACTIONS(1842), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -65894,10 +82759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1899), 29, + ACTIONS(1836), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -65906,79 +82769,20 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - [19466] = 20, + [25046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, - anon_sym_CARET, - ACTIONS(1853), 1, - anon_sym_AMP, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1869), 1, - anon_sym_PIPE, - ACTIONS(1875), 1, - anon_sym_AMP_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, + ACTIONS(1849), 1, anon_sym_EQ, - ACTIONS(1907), 1, - anon_sym_QMARK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1845), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1855), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1857), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1859), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1861), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1903), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1864), 1, anon_sym_COLON, + ACTIONS(1853), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -65989,10 +82793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1911), 13, + ACTIONS(1842), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66005,10 +82806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1909), 29, + ACTIONS(1836), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66017,58 +82816,20 @@ 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [19600] = 3, + [25099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 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, + ACTIONS(1849), 1, anon_sym_EQ, - ACTIONS(1913), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, + ACTIONS(1862), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1853), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66079,14 +82840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1919), 13, + ACTIONS(1842), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66099,10 +82853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1917), 29, + ACTIONS(1836), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66111,58 +82863,20 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - [19700] = 3, + [25152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 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, + ACTIONS(1849), 1, anon_sym_EQ, - ACTIONS(1921), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, + ACTIONS(1858), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1853), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66173,14 +82887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1927), 13, + ACTIONS(1842), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66193,10 +82900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1925), 29, + ACTIONS(1836), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66205,79 +82910,61 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - [19800] = 20, + [25205] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + anon_sym_EQ, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(1851), 1, + ACTIONS(2324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2326), 1, + anon_sym_AMP_AMP, + ACTIONS(2328), 1, + anon_sym_PIPE, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(2332), 1, anon_sym_AMP, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1869), 1, - anon_sym_PIPE, - ACTIONS(1875), 1, - anon_sym_AMP_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1931), 1, - anon_sym_EQ, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1855), 2, + ACTIONS(2334), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 2, + ACTIONS(2336), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1859), 2, + ACTIONS(2338), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1861), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1929), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(2248), 12, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66288,211 +82975,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19884] = 3, + [25283] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 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, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2218), 1, anon_sym_EQ, - ACTIONS(1933), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2318), 1, anon_sym_LPAREN2, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, + ACTIONS(2326), 1, 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_DOT, - anon_sym_DASH_GT, - [19934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1939), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2328), 1, anon_sym_PIPE, + ACTIONS(2330), 1, anon_sym_CARET, + ACTIONS(2332), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1937), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, + ACTIONS(2342), 1, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - [19984] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1436), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1438), 1, - anon_sym_RPAREN, - ACTIONS(1502), 1, - sym_identifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1006), 1, - sym__declaration_specifiers, - STATE(1331), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(687), 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, - [20068] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1857), 2, + ACTIONS(2334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2336), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1859), 2, + ACTIONS(2338), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1861), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1841), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(2216), 11, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66503,38 +83035,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20138] = 3, + [25363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 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, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, anon_sym_EQ, - ACTIONS(1941), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2318), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(2326), 1, anon_sym_AMP_AMP, + ACTIONS(2328), 1, + anon_sym_PIPE, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2332), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2334), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2338), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2236), 13, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -66546,26 +83093,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [20188] = 8, + [25439] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - STATE(624), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 13, + ACTIONS(2144), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66579,18 +83122,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1945), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2140), 18, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -66602,54 +83141,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20248] = 15, + [25495] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + anon_sym_EQ, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(1853), 1, + ACTIONS(2328), 1, + anon_sym_PIPE, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2332), 1, anon_sym_AMP, - ACTIONS(1863), 1, - anon_sym_LBRACK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1855), 2, + ACTIONS(2334), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 2, + ACTIONS(2336), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1859), 2, + ACTIONS(2338), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1861), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1849), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1841), 18, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2236), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -66661,86 +83198,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20322] = 3, + [25569] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 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, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2204), 1, anon_sym_EQ, - ACTIONS(1949), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2318), 1, anon_sym_LPAREN2, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, + ACTIONS(2326), 1, 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, + ACTIONS(2328), 1, + anon_sym_PIPE, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2332), 1, + anon_sym_AMP, + ACTIONS(2342), 1, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - [20372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 13, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, - 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(1953), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2334), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2338), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2180), 11, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -66751,42 +83258,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [25649] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2332), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - [20422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1959), 13, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2336), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2338), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2238), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(1957), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2236), 14, 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, @@ -66798,42 +83313,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [25719] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2332), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - [20472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 13, + ACTIONS(2238), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2336), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2338), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1961), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2236), 14, 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, @@ -66845,19 +83369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [25791] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - [20522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2238), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -66866,21 +83399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1965), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2236), 18, 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, @@ -66892,54 +83418,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [20572] = 11, + [25849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - STATE(624), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, sym_argument_list, - ACTIONS(1845), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1861), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2230), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1971), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1969), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2228), 18, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -66951,10 +83466,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20638] = 3, + [25905] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 13, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2238), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -66968,21 +83495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1973), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2236), 18, 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, @@ -66994,14 +83514,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [25961] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - [20688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 13, + ACTIONS(2158), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67015,21 +83543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1977), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2156), 18, 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, @@ -67041,51 +83562,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_DOT, - anon_sym_DASH_GT, - [20738] = 8, + [26017] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - STATE(624), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1849), 13, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2246), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1841), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2244), 18, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -67097,15 +83613,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20798] = 3, + [26079] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 13, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2238), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -67114,21 +83644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1546), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2236), 18, 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, @@ -67140,14 +83663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [20848] = 3, + [26139] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 13, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, + sym_argument_list, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2178), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67161,21 +83689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1981), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2176), 20, 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, @@ -67189,55 +83710,49 @@ 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, - [20898] = 14, + [26193] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - STATE(624), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1855), 2, + ACTIONS(2334), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 2, + ACTIONS(2336), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1859), 2, + ACTIONS(2338), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1861), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1849), 4, + ACTIONS(2238), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(1841), 18, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2236), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -67249,50 +83764,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20970] = 11, + [26261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - STATE(624), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, sym_argument_list, - ACTIONS(1845), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1861), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1847), 3, + ACTIONS(2320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1849), 6, + ACTIONS(2238), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(1841), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2236), 18, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -67304,94 +83815,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21036] = 3, + [26323] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1729), 1, + anon_sym_LPAREN2, + ACTIONS(1731), 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(1546), 29, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1274), 1, + sym__declarator, + STATE(1365), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1791), 1, + sym_ms_based_modifier, + ACTIONS(2346), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_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_DOT, - anon_sym_DASH_GT, - [21086] = 8, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(921), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(929), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [26401] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - STATE(624), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1987), 13, + ACTIONS(2320), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2338), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2322), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2238), 4, 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(1985), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2236), 16, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -67403,10 +83927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21146] = 3, + [26467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 13, + ACTIONS(2118), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67420,9 +83944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1989), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2116), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67430,11 +83952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -67450,39 +83969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21196] = 3, + [26512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 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, + ACTIONS(2354), 1, anon_sym_EQ, - ACTIONS(1993), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, + ACTIONS(2356), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -67493,26 +83985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [21246] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1999), 13, + ACTIONS(1842), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67525,43 +83998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1997), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1836), 14, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_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, - [21306] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, anon_sym_LBRACK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1867), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2003), 13, + [26561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2270), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67575,18 +84030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2001), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2268), 24, + anon_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_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -67600,29 +84053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [21364] = 10, + anon_sym_DOT, + anon_sym_DASH_GT, + [26606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1845), 2, + ACTIONS(2254), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1847), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1849), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -67631,18 +84072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1841), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2252), 24, + anon_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_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -67654,1741 +84093,1865 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21428] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2358), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2362), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2366), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2370), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2376), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2374), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2380), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2378), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2382), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2388), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2386), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1266), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1312), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1316), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2392), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2390), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2394), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1254), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2398), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1563), 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(1552), 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(1546), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [21481] = 19, + ACTIONS(2404), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2402), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1330), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1328), 35, + aux_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_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(51), 1, anon_sym_enum, - ACTIONS(53), 1, anon_sym_struct, - ACTIONS(55), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1436), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1502), 1, sym_identifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1006), 1, - sym__declaration_specifiers, - STATE(1348), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, + [27399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1286), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2408), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2406), 35, + aux_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_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(687), 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, - [21562] = 6, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1568), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 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(1546), 15, + ACTIONS(2412), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_STAR, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(2410), 27, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [21615] = 6, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1572), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 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(1546), 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, - [21668] = 6, + ACTIONS(1314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1312), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1561), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 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(1546), 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, - [21721] = 6, + ACTIONS(2368), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2366), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1570), 1, - anon_sym_COLON, - ACTIONS(1563), 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(1552), 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(1546), 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, - [21774] = 13, + ACTIONS(2372), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2370), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1841), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21840] = 14, + ACTIONS(2396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2394), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2316), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2009), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1841), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21908] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2314), 27, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2003), 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(2001), 20, - 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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [21962] = 8, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 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(1945), 18, - 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, - [22018] = 20, + ACTIONS(2392), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2390), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1931), 1, - anon_sym_EQ, - ACTIONS(2005), 1, + ACTIONS(2416), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2021), 1, - anon_sym_AMP_AMP, - ACTIONS(2023), 1, - anon_sym_PIPE, - ACTIONS(2025), 1, - anon_sym_CARET, - ACTIONS(2027), 1, - anon_sym_AMP, - ACTIONS(2029), 1, - anon_sym_QMARK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2009), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1929), 11, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22098] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2414), 27, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(51), 1, anon_sym_enum, - ACTIONS(53), 1, anon_sym_struct, - ACTIONS(55), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, sym_identifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1089), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, + [27824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2398), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1286), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(687), 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, - [22172] = 10, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1849), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1841), 18, - 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, - [22232] = 5, + ACTIONS(1330), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1328), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27950] = 3, ACTIONS(3), 1, sym_comment, - STATE(669), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2035), 6, + ACTIONS(2376), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2374), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2031), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - sym_null, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2033), 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, - [22282] = 17, + [27992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2408), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2406), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(51), 1, anon_sym_enum, - ACTIONS(53), 1, anon_sym_struct, - ACTIONS(55), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, sym_identifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1097), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, + [28034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1254), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1266), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(687), 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, - [22356] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1885), 1, - anon_sym_EQ, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - ACTIONS(2019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2021), 1, - anon_sym_AMP_AMP, - ACTIONS(2023), 1, - anon_sym_PIPE, - ACTIONS(2025), 1, - anon_sym_CARET, - ACTIONS(2027), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1881), 12, - 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, - [22434] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1905), 1, - anon_sym_EQ, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - ACTIONS(2019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2021), 1, - anon_sym_AMP_AMP, - ACTIONS(2023), 1, - anon_sym_PIPE, - ACTIONS(2025), 1, - anon_sym_CARET, - ACTIONS(2027), 1, - anon_sym_AMP, - ACTIONS(2029), 1, - anon_sym_QMARK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1903), 11, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22514] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(51), 1, anon_sym_enum, - ACTIONS(53), 1, anon_sym_struct, - ACTIONS(55), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, sym_identifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1094), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, + [28118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1316), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2402), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(687), 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, - [22588] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1849), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1841), 18, - 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, - [22646] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1849), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1841), 18, - 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, - [22708] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1971), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1969), 18, - 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, - [22770] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1999), 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(1997), 18, - 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, - [22826] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - ACTIONS(2027), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1849), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1841), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22896] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1987), 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(1985), 18, - 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, - [22952] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - ACTIONS(2025), 1, - anon_sym_CARET, - ACTIONS(2027), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1849), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1841), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23024] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_EQ, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - ACTIONS(2023), 1, - anon_sym_PIPE, - ACTIONS(2025), 1, - anon_sym_CARET, - ACTIONS(2027), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1841), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23098] = 18, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_EQ, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - ACTIONS(2021), 1, - anon_sym_AMP_AMP, - ACTIONS(2023), 1, - anon_sym_PIPE, - ACTIONS(2025), 1, - anon_sym_CARET, - ACTIONS(2027), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2007), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2011), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2013), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2015), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2017), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1841), 13, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23174] = 17, + ACTIONS(2364), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2362), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2380), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2378), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(51), 1, anon_sym_enum, - ACTIONS(53), 1, anon_sym_struct, - ACTIONS(55), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, sym_identifier, - STATE(746), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1091), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, + [28286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2388), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2386), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2382), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(687), 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, - [23248] = 8, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1849), 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(1841), 18, - 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, - [23304] = 3, + ACTIONS(2360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2358), 33, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 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(1909), 24, + ACTIONS(1633), 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(1631), 27, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23349] = 5, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, - anon_sym_EQ, - ACTIONS(2040), 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(1552), 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(1546), 14, + ACTIONS(1629), 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(1627), 27, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23398] = 16, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2420), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2418), 27, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(51), 1, anon_sym_enum, - ACTIONS(53), 1, anon_sym_struct, - ACTIONS(55), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1502), 1, sym_identifier, - STATE(739), 1, - sym__type_specifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(47), 4, + [28535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2104), 31, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2100), 31, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(689), 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, - [23469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 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(1993), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23514] = 9, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28617] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2052), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2044), 5, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2422), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2424), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(2046), 5, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2058), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(689), 7, + anon_sym_thread_local, + STATE(782), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69396,186 +85959,80 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2042), 11, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1873), 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(1871), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(2063), 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, - [23660] = 19, + anon_sym_noreturn, + [28669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1442), 1, - anon_sym_STAR, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1095), 1, - sym__declarator, - STATE(1187), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(1514), 1, - sym_ms_based_modifier, - ACTIONS(2067), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(809), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(844), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, + ACTIONS(2396), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2394), 30, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [23736] = 3, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2384), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(2075), 24, + ACTIONS(2382), 31, + aux_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_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69585,71 +86042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23776] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1881), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23847] = 3, + [28749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(2376), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 30, + anon_sym_RBRACE, + ACTIONS(2374), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69658,12 +86061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69673,19 +86079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23886] = 3, + [28789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2388), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2103), 30, + ACTIONS(2386), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69694,12 +86098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69709,19 +86116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23925] = 3, + [28829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(1318), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2107), 30, + anon_sym_RBRACE, + ACTIONS(1316), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69730,12 +86135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69745,19 +86153,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23964] = 3, + [28869] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2426), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2428), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(899), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [28921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, + ACTIONS(2380), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2111), 30, + anon_sym_RBRACE, + ACTIONS(2378), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69766,12 +86215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69781,19 +86233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24003] = 3, + [28961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(1314), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2115), 30, + anon_sym_RBRACE, + ACTIONS(1312), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69802,12 +86252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69817,19 +86270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24042] = 3, + [29001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2400), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2119), 30, + ACTIONS(2398), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69838,12 +86289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69853,19 +86307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24081] = 3, + [29041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(1268), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2123), 30, + ACTIONS(1266), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69874,12 +86326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69889,19 +86344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24120] = 3, + [29081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(1314), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2127), 30, + ACTIONS(1312), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69910,12 +86363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69925,19 +86381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24159] = 3, + [29121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2392), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2131), 30, + anon_sym_RBRACE, + ACTIONS(2390), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69946,12 +86400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69961,19 +86418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24198] = 3, + [29161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(1318), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2135), 30, + ACTIONS(1316), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -69982,12 +86437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -69997,19 +86455,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24237] = 3, + [29201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(1256), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2139), 30, + ACTIONS(1254), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70018,12 +86474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70033,19 +86492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24276] = 3, + [29241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, + ACTIONS(1330), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2143), 30, + ACTIONS(1328), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70054,12 +86511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70069,64 +86529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24315] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1971), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 13, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24372] = 3, + [29281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, + ACTIONS(2396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2147), 30, + ACTIONS(2394), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70135,12 +86548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70150,19 +86566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24411] = 3, + [29321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(1288), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2151), 30, + ACTIONS(1286), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70171,12 +86585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70186,216 +86603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24450] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1929), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [24523] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1849), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 15, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24576] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1841), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24645] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1841), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [24712] = 3, + [29361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1112), 1, + ACTIONS(1288), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1110), 30, + anon_sym_RBRACE, + ACTIONS(1286), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70404,12 +86622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70419,72 +86640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24751] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [24824] = 3, + [29401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, + ACTIONS(2380), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1332), 30, + ACTIONS(2378), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70493,12 +86659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70508,19 +86677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24863] = 3, + [29441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 1, + ACTIONS(2368), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1382), 30, + anon_sym_RBRACE, + ACTIONS(2366), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70529,12 +86696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70544,19 +86714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24902] = 3, + [29481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1116), 1, + ACTIONS(2360), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1114), 30, + anon_sym_RBRACE, + ACTIONS(2358), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70565,12 +86733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70578,85 +86749,36 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym_enum, anon_sym_struct, - anon_sym_union, - sym_identifier, - [24941] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1849), 1, - anon_sym_PIPE, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1841), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [25008] = 3, + anon_sym_union, + sym_identifier, + [29521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2376), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2061), 24, + ACTIONS(2374), 31, + aux_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_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70666,33 +86788,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25047] = 3, + [29561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2372), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2157), 24, + anon_sym_RBRACE, + ACTIONS(2370), 30, + 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_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70702,19 +86825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25086] = 3, + [29601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 1, + ACTIONS(2400), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1126), 30, + anon_sym_RBRACE, + ACTIONS(2398), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -70723,12 +86844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -70738,265 +86862,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25125] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 15, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [25180] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 13, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [25237] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1849), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1841), 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_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [25298] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1849), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1841), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [25361] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1849), 1, - anon_sym_PIPE, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2093), 1, - anon_sym_AMP, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1841), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [25426] = 3, + [29641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2408), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 24, + ACTIONS(2406), 31, + aux_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_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71006,32 +86899,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25464] = 3, + [29681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 2, + ACTIONS(2388), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1825), 28, + anon_sym_RBRACE, + ACTIONS(2386), 30, + 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_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71041,32 +86936,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25502] = 3, + [29721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2404), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2161), 24, + ACTIONS(2402), 31, + aux_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_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71076,32 +86973,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25540] = 3, + [29761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2372), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1414), 24, + ACTIONS(2370), 31, + aux_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_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71111,32 +87010,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25578] = 3, + [29801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 2, + ACTIONS(2420), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1821), 28, + STATE(620), 1, + sym_string_literal, + ACTIONS(2430), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2418), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71146,18 +87049,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25616] = 3, + [29845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 2, + ACTIONS(2420), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2115), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(630), 1, + sym_string_literal, + ACTIONS(2430), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2418), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -71165,12 +87070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71180,12 +87088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25653] = 3, + [29889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 1, + ACTIONS(2364), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1126), 28, + ACTIONS(2362), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -71199,12 +87107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71214,65 +87125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25690] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2165), 1, - anon_sym_COMMA, - ACTIONS(2167), 1, - anon_sym_RPAREN, - STATE(624), 1, - sym_argument_list, - STATE(1268), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25765] = 3, + [29929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2368), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2103), 28, + ACTIONS(2366), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -71286,12 +87144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71301,159 +87162,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25802] = 22, + [29969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2169), 1, + STATE(892), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2434), 7, anon_sym_COMMA, - ACTIONS(2171), 1, anon_sym_RPAREN, - STATE(624), 1, - sym_argument_list, - STATE(1287), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25877] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2165), 1, - anon_sym_COMMA, - ACTIONS(2173), 1, - anon_sym_RPAREN, - STATE(624), 1, - sym_argument_list, - STATE(1259), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25952] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2432), 20, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2175), 3, anon_sym___based, anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(2177), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(783), 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, - [26001] = 3, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [30013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 2, + ACTIONS(1330), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1092), 27, + ACTIONS(1328), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -71466,12 +87220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71481,67 +87238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26038] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2179), 1, - anon_sym_COMMA, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2181), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [26111] = 3, + [30053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(1268), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2131), 28, + anon_sym_RBRACE, + ACTIONS(1266), 30, aux_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, @@ -71552,12 +87257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71567,18 +87275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26148] = 3, + [30093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(2420), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2127), 28, - aux_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, + STATE(621), 1, + sym_string_literal, + ACTIONS(2430), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2418), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -71586,12 +87296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71601,75 +87314,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26185] = 5, + [30137] = 9, ACTIONS(3), 1, sym_comment, - STATE(744), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2187), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2185), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2439), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2441), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(859), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [30189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2408), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2183), 17, + anon_sym_RBRACE, + ACTIONS(2406), 30, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2358), 31, + aux_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_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [26226] = 9, + [30269] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(886), 1, + ACTIONS(1062), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2190), 3, + ACTIONS(2443), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2192), 5, + ACTIONS(2445), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(689), 7, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(782), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -71677,60 +87465,27 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [26275] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2194), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2196), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(45), 6, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(745), 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, - [26324] = 5, + anon_sym_noreturn, + [30321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, + ACTIONS(2384), 2, anon_sym_LBRACK_LBRACK, - STATE(521), 1, - sym_string_literal, - ACTIONS(2198), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2161), 22, + anon_sym_RBRACE, + ACTIONS(2382), 30, + 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_extern, anon_sym___attribute__, anon_sym___declspec, @@ -71738,12 +87493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71753,13 +87511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26365] = 3, + [30361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 2, + ACTIONS(2364), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2139), 27, + ACTIONS(2362), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -71772,12 +87530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71787,13 +87548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26402] = 3, + [30401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 2, + ACTIONS(2404), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2123), 27, + ACTIONS(2402), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -71806,12 +87567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71821,18 +87585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26439] = 3, + [30441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, + ACTIONS(2420), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2143), 28, - aux_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, + STATE(618), 1, + sym_string_literal, + ACTIONS(2430), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2418), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -71840,12 +87606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71855,13 +87624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26476] = 3, + [30485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 2, + ACTIONS(1256), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2119), 27, + ACTIONS(1254), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -71874,12 +87643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71889,20 +87661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26513] = 5, + [30525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, + ACTIONS(2420), 1, anon_sym_LBRACK_LBRACK, - STATE(535), 1, + STATE(635), 1, sym_string_literal, - ACTIONS(2198), 5, + ACTIONS(2430), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2161), 22, + ACTIONS(2418), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -71910,12 +87682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -71925,15 +87700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26554] = 3, + [30569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 2, + ACTIONS(2392), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2131), 27, + ACTIONS(2390), 31, aux_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, @@ -71944,6475 +87719,7559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30609] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2238), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2236), 15, + 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_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [30664] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2238), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2236), 15, + 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_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [30717] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2244), 13, + 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_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [30774] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2248), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [30845] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2216), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [30918] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2463), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2236), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [30983] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2236), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31050] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2238), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2236), 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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31111] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2238), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2236), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31174] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2238), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2236), 13, + 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_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31231] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2236), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31300] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2236), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31367] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2180), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [31440] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(2482), 1, + sym_primitive_type, + STATE(892), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2480), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 1, + ACTIONS(2476), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(533), 1, - sym_string_literal, - ACTIONS(2198), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2161), 22, + ACTIONS(2478), 18, anon_sym_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26632] = 3, + anon_sym_noreturn, + [31487] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1382), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1729), 1, + anon_sym_LPAREN2, + ACTIONS(1731), 1, + anon_sym_STAR, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1262), 1, + sym__declarator, + STATE(1353), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1791), 1, + sym_ms_based_modifier, + ACTIONS(2484), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26669] = 3, + anon_sym_noreturn, + [31549] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2143), 27, - 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_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2486), 1, + anon_sym_SEMI, + ACTIONS(2439), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2441), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, + STATE(859), 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(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26706] = 3, + anon_sym_noreturn, + [31600] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2111), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, + anon_sym_LPAREN2, + ACTIONS(2490), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1262), 1, + sym__declarator, + STATE(1791), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(943), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1117), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26743] = 3, + anon_sym_noreturn, + [31659] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2107), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1322), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(934), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1131), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26780] = 3, + anon_sym_noreturn, + [31718] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1332), 27, - 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_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2498), 1, + anon_sym_SEMI, + ACTIONS(2439), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2441), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, + STATE(859), 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(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26817] = 5, + anon_sym_noreturn, + [31769] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, - anon_sym_LBRACK_LBRACK, - STATE(548), 1, - sym_string_literal, - ACTIONS(2198), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2161), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1322), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1131), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1182), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26858] = 3, + anon_sym_noreturn, + [31828] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2135), 27, - 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_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2500), 1, + anon_sym_SEMI, + ACTIONS(2439), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2441), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, + STATE(859), 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(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26895] = 3, + anon_sym_noreturn, + [31879] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2151), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1290), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1114), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1182), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26932] = 3, + anon_sym_noreturn, + [31938] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2107), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, + anon_sym_LPAREN2, + ACTIONS(2490), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1262), 1, + sym__declarator, + STATE(1791), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1117), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1182), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26969] = 3, + anon_sym_noreturn, + [31997] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2111), 28, - aux_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_extern, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2508), 1, + anon_sym_COMMA, + ACTIONS(2510), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + STATE(1498), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32072] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2512), 1, + anon_sym_SEMI, + ACTIONS(2439), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2441), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, + STATE(859), 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(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27006] = 3, + anon_sym_noreturn, + [32123] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2115), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1278), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1130), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1182), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27043] = 3, + anon_sym_noreturn, + [32182] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1116), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1114), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, + anon_sym_LPAREN2, + ACTIONS(2490), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1274), 1, + sym__declarator, + STATE(1791), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(929), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1112), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27080] = 3, + anon_sym_noreturn, + [32241] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1112), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1110), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1293), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1108), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1182), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27117] = 3, + anon_sym_noreturn, + [32300] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2119), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1278), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(928), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1130), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27154] = 3, + anon_sym_noreturn, + [32359] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2516), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [32432] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, anon_sym_RBRACE, - ACTIONS(2127), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(733), 1, + sym_argument_list, + STATE(1504), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32507] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1289), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(932), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1123), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27191] = 3, + anon_sym_noreturn, + [32566] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2151), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2522), 1, + anon_sym_COMMA, + ACTIONS(2524), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + STATE(1443), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32641] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2522), 1, + anon_sym_COMMA, + ACTIONS(2526), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + STATE(1433), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32716] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1317), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(926), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1109), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27228] = 3, + anon_sym_noreturn, + [32775] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2103), 27, - 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_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2528), 1, + anon_sym_SEMI, + ACTIONS(2439), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2441), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, + STATE(859), 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(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27265] = 3, + anon_sym_noreturn, + [32826] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2123), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, + anon_sym_LPAREN2, + ACTIONS(2490), 1, + anon_sym_STAR, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1265), 1, + sym__declarator, + STATE(1791), 1, + sym_ms_based_modifier, + ACTIONS(2350), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1137), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1182), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2348), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27302] = 22, + anon_sym_noreturn, + [32885] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2530), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32957] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2532), 1, + anon_sym_SEMI, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33029] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2534), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [33099] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2200), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_RBRACE, - STATE(624), 1, + ACTIONS(2536), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - STATE(1313), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1112), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1110), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2147), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27451] = 3, + [33171] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2147), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27488] = 3, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2538), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33243] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1116), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1114), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27525] = 3, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2540), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33315] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1382), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27562] = 3, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2542), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33387] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1332), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27599] = 3, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2544), 1, + anon_sym_RPAREN, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33459] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2546), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1126), 27, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2135), 28, - aux_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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27673] = 3, + [33529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(2552), 1, + anon_sym_LBRACE, + STATE(1086), 1, + sym_field_declaration_list, + ACTIONS(2550), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2139), 28, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2548), 19, anon_sym_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_noreturn, sym_identifier, - [27710] = 9, + [33569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2204), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2206), 5, + ACTIONS(2552), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_field_declaration_list, + ACTIONS(2556), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(689), 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, - [27759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1094), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 28, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2554), 19, anon_sym_extern, 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_noreturn, sym_identifier, - [27796] = 21, + [33609] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2558), 1, + anon_sym_SEMI, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33681] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2208), 1, + ACTIONS(2560), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27868] = 21, + [33753] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2210), 1, + ACTIONS(2562), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27940] = 20, + [33825] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2564), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2212), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [28010] = 20, + [33897] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2566), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, + [33969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2572), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_COLON, + STATE(1073), 1, + sym_enumerator_list, + ACTIONS(2570), 6, anon_sym_COMMA, - anon_sym_RBRACE, - [28080] = 21, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2568), 19, + anon_sym_extern, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [34011] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2216), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2576), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28152] = 21, + [34083] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2218), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2578), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28224] = 21, + [34155] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2220), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2580), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28296] = 21, + [34227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2552), 1, + anon_sym_LBRACE, + STATE(1076), 1, + sym_field_declaration_list, + ACTIONS(2584), 7, anon_sym_COMMA, - ACTIONS(2222), 1, - anon_sym_SEMI, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28368] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2582), 19, + anon_sym_extern, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [34267] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2224), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2586), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28440] = 21, + [34339] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2226), 1, + ACTIONS(2588), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28512] = 21, + [34411] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2228), 1, + ACTIONS(2590), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28584] = 21, + [34483] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2230), 1, + ACTIONS(2592), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28656] = 21, + [34555] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2232), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2594), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28728] = 21, + [34627] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2234), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2596), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28800] = 21, + [34699] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2236), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2598), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28872] = 7, + [34771] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2247), 1, - sym_primitive_type, - STATE(744), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2245), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2241), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2142), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2243), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2146), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [28916] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2249), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2600), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28988] = 21, + [34843] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2251), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2602), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29060] = 21, + [34915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2552), 1, + anon_sym_LBRACE, + STATE(1079), 1, + sym_field_declaration_list, + ACTIONS(2606), 7, anon_sym_COMMA, - ACTIONS(2253), 1, anon_sym_RPAREN, - STATE(624), 1, - sym_argument_list, - ACTIONS(1865), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2079), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2081), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2099), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29132] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2604), 19, + anon_sym_extern, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [34955] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2255), 1, + ACTIONS(2608), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29204] = 21, + [35027] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, - anon_sym_COMMA, - ACTIONS(2257), 1, - anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29276] = 21, + ACTIONS(2610), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [35097] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2259), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2612), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29348] = 21, + [35169] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2261), 1, + ACTIONS(2614), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29420] = 21, + [35241] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2263), 1, + ACTIONS(2616), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29492] = 15, + [35313] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1442), 1, - anon_sym_STAR, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2073), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - STATE(1101), 1, - sym__declarator, - STATE(1190), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(1514), 1, - sym_ms_based_modifier, - ACTIONS(2265), 2, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [29552] = 21, + ACTIONS(2618), 1, + anon_sym_SEMI, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [35385] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2267), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2620), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29624] = 21, + [35457] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2269), 1, + ACTIONS(2622), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29696] = 20, + [35529] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2624), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, + [35601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2572), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_enumerator_list, + ACTIONS(2628), 7, anon_sym_COMMA, - anon_sym_RBRACE, - [29766] = 21, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2626), 19, + anon_sym_extern, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [35641] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2273), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2630), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29838] = 21, + [35713] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2632), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29910] = 20, + [35785] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2634), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [29980] = 21, + [35857] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2279), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2636), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30052] = 21, + [35929] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2281), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2638), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30124] = 21, + [36001] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2283), 1, + ACTIONS(2640), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30196] = 20, + [36073] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2642), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2285), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [30266] = 20, + [36145] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2644), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2287), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [30336] = 21, + [36217] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2289), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2646), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30408] = 21, + [36289] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2291), 1, + ACTIONS(2648), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30480] = 21, + [36361] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2293), 1, + ACTIONS(2650), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, + [36433] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30552] = 21, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2652), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [36503] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2295), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2654), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30624] = 21, + [36575] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2297), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2656), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30696] = 21, + [36647] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2299), 1, - anon_sym_RPAREN, - STATE(624), 1, + ACTIONS(2658), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30768] = 21, + [36719] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, - anon_sym_COMMA, - ACTIONS(2301), 1, - anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, + ACTIONS(2660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [36789] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_SLASH, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2447), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2449), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2453), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30840] = 21, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2662), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [36859] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2303), 1, + ACTIONS(2664), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30912] = 21, + [36931] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2305), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2666), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30984] = 21, + [37003] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2307), 1, + ACTIONS(2668), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31056] = 21, + [37075] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2309), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2670), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31128] = 21, + [37147] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2311), 1, + ACTIONS(2672), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31200] = 20, + [37219] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2514), 1, + anon_sym_COMMA, + ACTIONS(2674), 1, + anon_sym_SEMI, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2313), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [31270] = 21, + [37291] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2315), 1, + ACTIONS(2676), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31342] = 21, + [37363] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2317), 1, + ACTIONS(2678), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31414] = 21, + [37435] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2319), 1, + ACTIONS(2680), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31486] = 21, + [37507] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2321), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2682), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31558] = 21, + [37579] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, - anon_sym_COMMA, - ACTIONS(2323), 1, - anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31630] = 21, + ACTIONS(2684), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37649] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2325), 1, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31702] = 21, + [37721] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2327), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2688), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31774] = 21, + [37793] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2329), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2690), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31846] = 21, + [37865] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2331), 1, + ACTIONS(2692), 1, anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31918] = 21, + [37937] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2179), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - ACTIONS(2333), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(2694), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31990] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, - anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1101), 1, - sym__declarator, - STATE(1514), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1055), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [32047] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1141), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(891), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1060), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [32104] = 20, + [38009] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2345), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - STATE(624), 1, + ACTIONS(2696), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32173] = 20, + [38081] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(624), 1, + ACTIONS(2698), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32242] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2351), 1, - anon_sym_LPAREN2, - ACTIONS(2353), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1116), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1037), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1167), 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [32299] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2351), 1, - anon_sym_LPAREN2, - ACTIONS(2353), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1110), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(848), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1062), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1167), 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [32356] = 20, + [38150] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, + ACTIONS(2052), 1, anon_sym_RBRACK, - ACTIONS(2005), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32425] = 20, + [38219] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2381), 1, - anon_sym_COLON, - STATE(624), 1, + ACTIONS(2726), 1, + anon_sym_RPAREN, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32494] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, - anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1095), 1, - sym__declarator, - STATE(1514), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(844), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1038), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [32551] = 14, + [38288] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(2351), 1, - anon_sym_LPAREN2, - ACTIONS(2353), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1106), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1059), 2, + STATE(1099), 1, + sym__type_specifier, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1746), 1, + sym_type_descriptor, + STATE(1068), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1167), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, + ACTIONS(1623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32608] = 20, + anon_sym_noreturn, + [38343] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(2036), 1, anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32677] = 20, + [38412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, - anon_sym_AMP_AMP, - ACTIONS(2365), 1, - anon_sym_PIPE, - ACTIONS(2367), 1, - anon_sym_CARET, - ACTIONS(2369), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2722), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2244), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32746] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [38465] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2048), 1, + anon_sym_RBRACK, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - ACTIONS(2383), 1, - anon_sym_COLON, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32815] = 11, + [38534] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2050), 1, + anon_sym_RBRACK, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - STATE(624), 1, + ACTIONS(2706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2708), 1, + anon_sym_AMP_AMP, + ACTIONS(2710), 1, + anon_sym_PIPE, + ACTIONS(2712), 1, + anon_sym_CARET, + ACTIONS(2714), 1, + anon_sym_AMP, + ACTIONS(2724), 1, + anon_sym_QMARK, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2718), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [32866] = 12, + [38603] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, anon_sym_SLASH, - STATE(624), 1, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2728), 1, + anon_sym_COLON, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2377), 2, + ACTIONS(2453), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [32919] = 20, + [38672] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2066), 1, + anon_sym_RBRACK, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - ACTIONS(2385), 1, - anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32988] = 20, + [38741] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1773), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_enum, + STATE(1099), 1, + sym__type_specifier, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1674), 1, + sym_type_descriptor, + STATE(1091), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38796] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_enum, + STATE(1099), 1, + sym__type_specifier, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1631), 1, + sym_type_descriptor, + STATE(1091), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38851] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33057] = 14, + [38920] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, + sym_identifier, + STATE(1099), 1, + sym__type_specifier, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1741), 1, + sym_type_descriptor, + STATE(1068), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38975] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1849), 2, + ACTIONS(2706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2708), 1, + anon_sym_AMP_AMP, + ACTIONS(2710), 1, anon_sym_PIPE, + ACTIONS(2712), 1, + anon_sym_CARET, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(1865), 2, + ACTIONS(2724), 1, + anon_sym_QMARK, + ACTIONS(2732), 1, + anon_sym_RBRACK, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2373), 2, + ACTIONS(2716), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1841), 7, - 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, - [33114] = 20, + [39044] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2062), 1, + anon_sym_RBRACK, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - ACTIONS(2387), 1, - anon_sym_COLON, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33183] = 20, + [39113] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2389), 1, + ACTIONS(2734), 1, anon_sym_COLON, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33252] = 15, + [39182] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, anon_sym_SLASH, - STATE(624), 1, - sym_argument_list, - ACTIONS(1849), 2, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(1865), 2, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2736), 1, + anon_sym_COLON, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1841), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [33311] = 16, + [39251] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_PIPE, - ACTIONS(1863), 1, + ACTIONS(2070), 1, + anon_sym_RBRACK, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2369), 1, + ACTIONS(2706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2708), 1, + anon_sym_AMP_AMP, + ACTIONS(2710), 1, + anon_sym_PIPE, + ACTIONS(2712), 1, + anon_sym_CARET, + ACTIONS(2714), 1, anon_sym_AMP, - STATE(624), 1, + ACTIONS(2724), 1, + anon_sym_QMARK, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1841), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [33372] = 20, + [39320] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, - anon_sym_RBRACK, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2738), 1, + anon_sym_COLON, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33441] = 12, + [39389] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, anon_sym_SLASH, - STATE(624), 1, + ACTIONS(2455), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 1, + anon_sym_AMP_AMP, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2740), 1, + anon_sym_COLON, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2377), 2, + ACTIONS(2453), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1971), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [33494] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2351), 1, - anon_sym_LPAREN2, - ACTIONS(2353), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1116), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(853), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1037), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1167), 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [33551] = 20, + [39458] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(2064), 1, anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33620] = 20, + [39527] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2391), 1, + ACTIONS(2742), 1, anon_sym_COLON, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33689] = 14, + [39596] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1101), 1, - sym__declarator, - STATE(1514), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(883), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1055), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [33746] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2744), 1, + anon_sym_COLON, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33815] = 17, + [39665] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_PIPE, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2367), 1, + ACTIONS(2706), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2708), 1, + anon_sym_AMP_AMP, + ACTIONS(2710), 1, + anon_sym_PIPE, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - STATE(624), 1, + ACTIONS(2724), 1, + anon_sym_QMARK, + ACTIONS(2746), 1, + anon_sym_RBRACK, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1841), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [33878] = 20, + [39734] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(1929), 1, - anon_sym_RBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2248), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33947] = 20, + [39801] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym_RBRACK, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - STATE(624), 1, + ACTIONS(2748), 1, + anon_sym_COMMA, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2467), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [39870] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2704), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2702), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2238), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2236), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34016] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [39919] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34085] = 17, + ACTIONS(2236), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [39984] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1841), 4, + ACTIONS(2236), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [34148] = 20, + [40047] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2238), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2704), 1, + anon_sym_SLASH, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2393), 1, - anon_sym_COLON, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34217] = 18, + ACTIONS(2236), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [40110] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2363), 1, - anon_sym_AMP_AMP, - ACTIONS(2365), 1, - anon_sym_PIPE, - ACTIONS(2367), 1, - anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1841), 3, + ACTIONS(2236), 5, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [34282] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1139), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(886), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1009), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [34339] = 10, + [40171] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1849), 6, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2238), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1841), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2700), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2702), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2718), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2236), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [34388] = 20, + [40230] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2318), 1, + anon_sym_LPAREN2, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, - anon_sym_AMP_AMP, - ACTIONS(2089), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_CARET, - ACTIONS(2093), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2395), 1, - anon_sym_RPAREN, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2238), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34457] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, - anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1084), 1, - sym__declarator, - STATE(1514), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1036), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [34514] = 20, + ACTIONS(2236), 7, + 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, + [40287] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(2038), 1, anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34583] = 20, + [40356] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2085), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2087), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2091), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2093), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(2471), 1, anon_sym_QMARK, - ACTIONS(2397), 1, + ACTIONS(2750), 1, anon_sym_COLON, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2079), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2081), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2095), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2097), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2099), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34652] = 14, + [40425] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2343), 1, + ACTIONS(2704), 1, + anon_sym_SLASH, + STATE(733), 1, + sym_argument_list, + ACTIONS(2148), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2150), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2700), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2702), 2, anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1141), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1060), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [34709] = 20, + anon_sym_PERCENT, + ACTIONS(2722), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2238), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2236), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [40478] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, - anon_sym_AMP_AMP, - ACTIONS(2365), 1, - anon_sym_PIPE, - ACTIONS(2367), 1, - anon_sym_CARET, - ACTIONS(2369), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_QMARK, - ACTIONS(2399), 1, - anon_sym_RBRACK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2238), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2236), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34778] = 19, + anon_sym_RBRACK, + anon_sym_QMARK, + [40529] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2146), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2457), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2461), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2463), 1, anon_sym_AMP, - STATE(624), 1, + ACTIONS(2471), 1, + anon_sym_QMARK, + ACTIONS(2752), 1, + anon_sym_COLON, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1881), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(2355), 2, + ACTIONS(2447), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2449), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2467), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2469), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34845] = 20, + [40598] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2216), 1, + anon_sym_RBRACK, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - ACTIONS(2401), 1, - anon_sym_RBRACK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34914] = 20, + [40667] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym_RBRACK, - ACTIONS(1863), 1, + ACTIONS(2146), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(2180), 1, + anon_sym_RBRACK, + ACTIONS(2318), 1, anon_sym_LPAREN2, - ACTIONS(2359), 1, + ACTIONS(2704), 1, anon_sym_SLASH, - ACTIONS(2361), 1, + ACTIONS(2706), 1, anon_sym_PIPE_PIPE, - ACTIONS(2363), 1, + ACTIONS(2708), 1, anon_sym_AMP_AMP, - ACTIONS(2365), 1, + ACTIONS(2710), 1, anon_sym_PIPE, - ACTIONS(2367), 1, + ACTIONS(2712), 1, anon_sym_CARET, - ACTIONS(2369), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2724), 1, anon_sym_QMARK, - STATE(624), 1, + STATE(733), 1, sym_argument_list, - ACTIONS(1865), 2, + ACTIONS(2148), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1867), 2, + ACTIONS(2150), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2355), 2, + ACTIONS(2700), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2357), 2, + ACTIONS(2702), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2371), 2, + ACTIONS(2716), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2373), 2, + ACTIONS(2718), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2375), 2, + ACTIONS(2720), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2377), 2, + ACTIONS(2722), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34983] = 14, + [40736] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1128), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - ACTIONS(2071), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1063), 2, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1125), 1, + sym__type_specifier, + STATE(1080), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2069), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35040] = 10, + anon_sym_noreturn, + [40788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(886), 1, + ACTIONS(2756), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2403), 1, - anon_sym_SEMI, - ACTIONS(2194), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2196), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(43), 5, + ACTIONS(2754), 25, anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(745), 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, - [35088] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2405), 1, - anon_sym_SEMI, - ACTIONS(2194), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2196), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(43), 5, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(45), 6, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(745), 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, - [35136] = 10, + anon_sym_noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40822] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2407), 1, - anon_sym_SEMI, - ACTIONS(2194), 2, - anon_sym___based, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(2196), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(45), 6, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1107), 1, + sym__type_specifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(745), 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, - [35184] = 10, + anon_sym_noreturn, + [40874] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(886), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2409), 1, - anon_sym_SEMI, - ACTIONS(2194), 2, - anon_sym___based, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(2196), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(45), 6, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1121), 1, + sym__type_specifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(745), 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, - [35232] = 5, + anon_sym_noreturn, + [40926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_field_declaration_list, - ACTIONS(2413), 7, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(1847), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2411), 16, + ACTIONS(1834), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -78422,14 +95281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [35269] = 13, + [40962] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -78440,156 +95302,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1502), 1, + ACTIONS(1661), 1, sym_identifier, - STATE(978), 1, - sym__type_specifier, - STATE(1015), 1, + STATE(920), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1424), 1, - sym_type_descriptor, - STATE(908), 2, + STATE(1134), 1, + sym__type_specifier, + STATE(1063), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1396), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(924), 5, + STATE(1071), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35322] = 13, + anon_sym_noreturn, + [41014] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1502), 1, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(2417), 1, - anon_sym_enum, - STATE(978), 1, - sym__type_specifier, - STATE(1015), 1, + STATE(920), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1467), 1, - sym_type_descriptor, - STATE(915), 2, + STATE(1129), 1, + sym__type_specifier, + STATE(1074), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1396), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(924), 5, + STATE(1071), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [41066] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2290), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2761), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35375] = 13, + anon_sym_noreturn, + ACTIONS(2288), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [41104] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1502), 1, + ACTIONS(1661), 1, sym_identifier, - ACTIONS(2417), 1, - anon_sym_enum, - STATE(978), 1, + STATE(1098), 1, sym__type_specifier, - STATE(1015), 1, + STATE(1126), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1493), 1, - sym_type_descriptor, - STATE(915), 2, + STATE(1067), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1396), 4, + ACTIONS(1623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(924), 5, + STATE(1071), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35428] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2425), 1, - anon_sym_COLON, - STATE(925), 1, - sym_enumerator_list, - ACTIONS(2421), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2419), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [35467] = 5, + anon_sym_noreturn, + [41156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - anon_sym_LBRACE, - STATE(920), 1, - sym_field_declaration_list, - ACTIONS(2429), 7, + ACTIONS(2766), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78597,7 +95455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2427), 16, + ACTIONS(2764), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -78607,21 +95465,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [35504] = 5, + [41190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_enumerator_list, - ACTIONS(2433), 7, + ACTIONS(2770), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78629,7 +95486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2431), 16, + ACTIONS(2768), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -78639,61 +95496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [35541] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, - sym_identifier, - STATE(978), 1, - sym__type_specifier, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1455), 1, - sym_type_descriptor, - STATE(908), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1396), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35594] = 5, + [41224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_field_declaration_list, - ACTIONS(2437), 7, + ACTIONS(2774), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78701,7 +95517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2435), 16, + ACTIONS(2772), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -78711,21 +95527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [35631] = 5, + [41258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_field_declaration_list, - ACTIONS(2441), 7, + ACTIONS(2778), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78733,207 +95548,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2439), 16, + ACTIONS(2776), 19, anon_sym_extern, 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [35668] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, - sym_identifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1030), 1, - sym__type_specifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35718] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, - sym_identifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, - sym__type_specifier, - STATE(913), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35768] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, - sym_identifier, - STATE(958), 1, - sym__type_specifier, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1396), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [35818] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, - sym_identifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1034), 1, - sym__type_specifier, - STATE(906), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35868] = 5, + anon_sym_noreturn, + sym_identifier, + [41292] = 3, ACTIONS(3), 1, sym_comment, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2033), 6, + ACTIONS(2782), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2443), 6, + ACTIONS(2780), 19, + anon_sym_extern, + 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2031), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_noreturn, sym_identifier, - [35904] = 12, + [41326] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -78944,13 +95610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1502), 1, + ACTIONS(1661), 1, sym_identifier, - STATE(800), 1, + STATE(920), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1011), 1, + STATE(1136), 1, sym__type_specifier, - STATE(912), 2, + STATE(1067), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -78958,96 +95624,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(924), 5, + STATE(1071), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [35954] = 12, + anon_sym_noreturn, + [41378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, - sym_identifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1033), 1, - sym__type_specifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(2786), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2784), 19, + anon_sym_extern, + 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36004] = 12, + anon_sym_noreturn, + sym_identifier, + [41412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, + ACTIONS(2790), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2788), 19, + anon_sym_extern, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - STATE(800), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1013), 1, - sym__type_specifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + [41446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2794), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2792), 19, + anon_sym_extern, + 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36054] = 12, + anon_sym_noreturn, + sym_identifier, + [41480] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -79058,13 +95743,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1502), 1, + ACTIONS(1661), 1, sym_identifier, - STATE(800), 1, + STATE(920), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1022), 1, + STATE(1111), 1, sym__type_specifier, - STATE(916), 2, + STATE(1067), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -79072,58 +95757,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(924), 5, + STATE(1071), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36104] = 12, + anon_sym_noreturn, + [41532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(2417), 1, - anon_sym_enum, - STATE(958), 1, - sym__type_specifier, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1396), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(924), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(2798), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2796), 19, + anon_sym_extern, + 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_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36154] = 12, + anon_sym_noreturn, + sym_identifier, + [41566] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -79134,13 +95814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1502), 1, + ACTIONS(1661), 1, sym_identifier, - STATE(800), 1, + STATE(920), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1020), 1, + STATE(1128), 1, sym__type_specifier, - STATE(910), 2, + STATE(1067), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -79148,23 +95828,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(924), 5, + STATE(1071), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 6, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [36204] = 3, + anon_sym_noreturn, + [41618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 7, + ACTIONS(2802), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79172,7 +95854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2446), 16, + ACTIONS(2800), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79182,17 +95864,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36235] = 3, + [41652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 7, + ACTIONS(2806), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79200,7 +95885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2450), 16, + ACTIONS(2804), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79210,17 +95895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36266] = 3, + [41686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 7, + ACTIONS(2810), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79228,7 +95916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2454), 16, + ACTIONS(2808), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79238,17 +95926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36297] = 3, + [41720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 7, + ACTIONS(2814), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79256,7 +95947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2458), 16, + ACTIONS(2812), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79266,17 +95957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36328] = 3, + [41754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 7, + ACTIONS(2818), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79284,7 +95978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2462), 16, + ACTIONS(2816), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79294,17 +95988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36359] = 3, + [41788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 7, + ACTIONS(2822), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79312,7 +96009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2466), 16, + ACTIONS(2820), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79322,17 +96019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36390] = 3, + [41822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 7, + ACTIONS(2826), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79340,7 +96040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2470), 16, + ACTIONS(2824), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79350,17 +96050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36421] = 3, + [41856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 7, + ACTIONS(2830), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79368,7 +96071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2474), 16, + ACTIONS(2828), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79378,17 +96081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36452] = 3, + [41890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 7, + ACTIONS(2834), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79396,7 +96102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2478), 16, + ACTIONS(2832), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79406,17 +96112,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [36483] = 3, + [41924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 7, + ACTIONS(2838), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79424,7 +96133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2482), 16, + ACTIONS(2836), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79434,17 +96143,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [41958] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, sym_identifier, - [36514] = 3, + ACTIONS(2730), 1, + anon_sym_enum, + STATE(1098), 1, + sym__type_specifier, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 7, + ACTIONS(2842), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79452,7 +96204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2486), 16, + ACTIONS(2840), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79462,17 +96214,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [42044] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, sym_identifier, - [36545] = 3, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1138), 1, + sym__type_specifier, + STATE(1062), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 7, + ACTIONS(2846), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79480,7 +96275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2490), 16, + ACTIONS(2844), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -79490,576 +96285,1116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [42130] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1661), 1, + sym_identifier, + STATE(920), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1135), 1, + sym__type_specifier, + STATE(1078), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1071), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42182] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2851), 1, + anon_sym_LPAREN2, + ACTIONS(2855), 1, + anon_sym_LBRACK, + ACTIONS(1847), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2848), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1834), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [42220] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(1930), 1, + anon_sym_LPAREN2, + ACTIONS(1932), 1, + anon_sym_STAR, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1354), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2858), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2860), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42266] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(1930), 1, + anon_sym_LPAREN2, + ACTIONS(1932), 1, + anon_sym_STAR, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1359), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1097), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2862), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2860), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42312] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(1930), 1, + anon_sym_LPAREN2, + ACTIONS(1932), 1, + anon_sym_STAR, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1368), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1101), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2864), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2860), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2868), 1, + anon_sym_LPAREN2, + STATE(1169), 1, + sym_preproc_argument_list, + ACTIONS(2870), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2866), 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, + [42392] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(1930), 1, + anon_sym_LPAREN2, + ACTIONS(1932), 1, + anon_sym_STAR, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1360), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2872), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2860), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42438] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(1930), 1, + anon_sym_LPAREN2, + ACTIONS(1932), 1, + anon_sym_STAR, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1353), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2484), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2860), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42484] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_const, + ACTIONS(1930), 1, + anon_sym_LPAREN2, + ACTIONS(1932), 1, + anon_sym_STAR, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1365), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1102), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2346), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2860), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42530] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2874), 1, + anon_sym_COMMA, + ACTIONS(2876), 1, + anon_sym_RPAREN, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2886), 1, + anon_sym_AMP_AMP, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2890), 1, + anon_sym_CARET, + ACTIONS(2892), 1, + anon_sym_AMP, + STATE(1444), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42585] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1315), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36576] = 3, + anon_sym_noreturn, + [42628] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2494), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1309), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36607] = 3, + anon_sym_noreturn, + [42671] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2498), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1297), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1105), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36638] = 3, + anon_sym_noreturn, + [42714] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2502), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1294), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36669] = 4, + anon_sym_noreturn, + [42757] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(1557), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1544), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1322), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36702] = 3, + anon_sym_noreturn, + [42800] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 7, - anon_sym_COMMA, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(2904), 1, anon_sym_RPAREN, + ACTIONS(2906), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2509), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(2908), 1, + anon_sym_defined, + ACTIONS(2914), 1, + sym_number_literal, + ACTIONS(2910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2916), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1104), 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, + [42843] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1306), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1113), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36733] = 3, + anon_sym_noreturn, + [42886] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, anon_sym_LPAREN2, + ACTIONS(2490), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2513), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1262), 1, + sym__declarator, + STATE(1791), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36764] = 3, + anon_sym_noreturn, + [42929] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2517), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1292), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36795] = 3, + anon_sym_noreturn, + [42972] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, anon_sym_LPAREN2, + ACTIONS(2506), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2521), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1287), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36826] = 3, + anon_sym_noreturn, + [43015] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2525), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1307), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36857] = 3, + anon_sym_noreturn, + [43058] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2529), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(2874), 1, + anon_sym_COMMA, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2886), 1, + anon_sym_AMP_AMP, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2890), 1, + anon_sym_CARET, + ACTIONS(2892), 1, + anon_sym_AMP, + ACTIONS(2918), 1, + anon_sym_RPAREN, + STATE(1434), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43113] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, + anon_sym_LPAREN2, + ACTIONS(2490), 1, + anon_sym_STAR, + STATE(1265), 1, + sym__declarator, + STATE(1791), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36888] = 3, + anon_sym_noreturn, + [43156] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2533), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(1308), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [36919] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2539), 1, + anon_sym_noreturn, + [43199] = 5, + ACTIONS(2866), 1, + anon_sym_LF, + ACTIONS(2920), 1, anon_sym_LPAREN2, - STATE(983), 1, + ACTIONS(2922), 1, + sym_comment, + STATE(1205), 1, sym_preproc_argument_list, - ACTIONS(2541), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2537), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2870), 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, - [36953] = 10, + [43232] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, sym_identifier, - ACTIONS(2545), 1, - anon_sym_RPAREN, - ACTIONS(2547), 1, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_defined, - ACTIONS(2555), 1, - sym_number_literal, - ACTIONS(2551), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2557), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(945), 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, - [36996] = 6, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1303), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43275] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(2566), 1, - anon_sym_LBRACK, - ACTIONS(1557), 2, - anon_sym_COMMA, + ACTIONS(2496), 1, anon_sym_STAR, - ACTIONS(2559), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1544), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + STATE(1311), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1115), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43318] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1299), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43361] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_STAR, + STATE(1278), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43404] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1318), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [37031] = 10, + anon_sym_noreturn, + [43447] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_defined, - ACTIONS(2569), 1, - anon_sym_RPAREN, - ACTIONS(2571), 1, - sym_number_literal, - ACTIONS(2551), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2557), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(944), 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, - [37074] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2573), 1, - anon_sym_COMMA, - ACTIONS(2575), 1, - anon_sym_RPAREN, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2583), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2585), 1, - anon_sym_AMP_AMP, - ACTIONS(2587), 1, - anon_sym_PIPE, - ACTIONS(2589), 1, - anon_sym_CARET, - ACTIONS(2591), 1, - anon_sym_AMP, - STATE(1280), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2579), 2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2595), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37129] = 16, + STATE(1301), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1124), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43490] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 1, + ACTIONS(2482), 1, + sym_primitive_type, + ACTIONS(2924), 1, + sym_identifier, + STATE(892), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2476), 6, anon_sym_COMMA, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2583), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2585), 1, - anon_sym_AMP_AMP, - ACTIONS(2587), 1, - anon_sym_PIPE, - ACTIONS(2589), 1, - anon_sym_CARET, - ACTIONS(2591), 1, - anon_sym_AMP, - ACTIONS(2601), 1, anon_sym_RPAREN, - STATE(1288), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2595), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37184] = 5, - ACTIONS(2537), 1, - anon_sym_LF, - ACTIONS(2603), 1, anon_sym_LPAREN2, - ACTIONS(2605), 1, - sym_comment, - STATE(1024), 1, - sym_preproc_argument_list, - ACTIONS(2541), 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, - [37217] = 9, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2478), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43527] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2617), 1, + ACTIONS(2926), 1, + anon_sym_RPAREN, + ACTIONS(2928), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1035), 7, + STATE(1116), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80067,385 +97402,393 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37257] = 10, + [43570] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2579), 2, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2595), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2623), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2621), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [37299] = 3, + STATE(1316), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1118), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43613] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1833), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37327] = 10, + STATE(1300), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1133), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43656] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, anon_sym_LPAREN2, - ACTIONS(1697), 1, + ACTIONS(2506), 1, anon_sym_STAR, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1187), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(1007), 2, + STATE(1290), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + STATE(1067), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2067), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2625), 6, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37369] = 3, + anon_sym_noreturn, + [43699] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2629), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2627), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37397] = 9, + STATE(1293), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43742] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_defined, - ACTIONS(2631), 1, - sym_number_literal, - ACTIONS(2551), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2557), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(993), 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, - [37437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2635), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2633), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37465] = 9, + STATE(1296), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43785] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, - anon_sym_defined, - ACTIONS(2637), 1, - sym_number_literal, - ACTIONS(2613), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2615), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2619), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1027), 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, - [37505] = 10, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1298), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1067), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43828] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(1697), 1, + ACTIONS(2496), 1, anon_sym_STAR, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1196), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(910), 2, + STATE(1320), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1120), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2639), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2625), 6, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37547] = 9, + anon_sym_noreturn, + [43871] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, - anon_sym_defined, - ACTIONS(2641), 1, - sym_number_literal, - ACTIONS(2551), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2557), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1025), 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, - [37587] = 10, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1321), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1106), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43914] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, - ACTIONS(1697), 1, + ACTIONS(2496), 1, anon_sym_STAR, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1194), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(910), 2, + STATE(1319), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1122), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2643), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2625), 6, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37629] = 10, + anon_sym_noreturn, + [43957] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(1697), 1, + ACTIONS(2490), 1, anon_sym_STAR, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1191), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(957), 2, + STATE(1260), 1, + sym__declarator, + STATE(1791), 1, + sym_ms_based_modifier, + STATE(1067), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2645), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2625), 6, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37671] = 5, + anon_sym_noreturn, + [44000] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2579), 2, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2623), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2621), 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, - [37703] = 9, + STATE(1304), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1132), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2647), 1, + ACTIONS(2930), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(979), 7, + STATE(1166), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80453,158 +97796,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2623), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2621), 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, - [37771] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2585), 1, - anon_sym_AMP_AMP, - ACTIONS(2587), 1, - anon_sym_PIPE, - ACTIONS(2589), 1, - anon_sym_CARET, - ACTIONS(2591), 1, - anon_sym_AMP, - ACTIONS(2577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2595), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2621), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [37819] = 12, + [44083] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2587), 1, - anon_sym_PIPE, - ACTIONS(2589), 1, - anon_sym_CARET, - ACTIONS(2591), 1, - anon_sym_AMP, - ACTIONS(2577), 2, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(2906), 1, + anon_sym_LPAREN2, + ACTIONS(2908), 1, + anon_sym_defined, + ACTIONS(2932), 1, + sym_number_literal, + ACTIONS(2910), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2595), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2621), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [37865] = 12, + ACTIONS(2916), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1159), 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, + [44123] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2589), 1, - anon_sym_CARET, - ACTIONS(2591), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_PIPE, - ACTIONS(2577), 2, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_defined, + ACTIONS(2944), 1, + sym_number_literal, + ACTIONS(2940), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2595), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2621), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [37911] = 9, + ACTIONS(2946), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1206), 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, + [44163] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2649), 1, + ACTIONS(2948), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(985), 7, + STATE(1224), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80612,30 +97889,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37951] = 9, + [44203] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2651), 1, + ACTIONS(2950), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(982), 7, + STATE(1216), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80643,30 +97920,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [37991] = 9, + [44243] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2653), 1, + ACTIONS(2952), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(981), 7, + STATE(1228), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80674,30 +97951,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38031] = 9, + [44283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2655), 1, + ACTIONS(2954), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(948), 7, + STATE(1199), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80705,30 +97982,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38071] = 9, + [44323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2258), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2256), 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, + [44351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2657), 1, + ACTIONS(2956), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(970), 7, + STATE(1203), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80736,63 +98038,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38111] = 11, + [44391] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2591), 1, - anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2886), 1, + anon_sym_AMP_AMP, + ACTIONS(2888), 1, anon_sym_PIPE, - ACTIONS(2577), 2, + ACTIONS(2890), 1, + anon_sym_CARET, + ACTIONS(2892), 1, + anon_sym_AMP, + ACTIONS(2878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2579), 2, + ACTIONS(2880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2593), 2, + ACTIONS(2894), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2595), 2, + ACTIONS(2896), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 2, + ACTIONS(2898), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2599), 2, + ACTIONS(2900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2621), 5, + ACTIONS(2958), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [38155] = 9, + [44441] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2659), 1, + ACTIONS(2960), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(964), 7, + STATE(1214), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80800,30 +98105,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38195] = 9, + [44481] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2661), 1, + ACTIONS(2962), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1028), 7, + STATE(1213), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80831,30 +98136,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38235] = 9, + [44521] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2663), 1, + ACTIONS(2964), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(963), 7, + STATE(1208), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80862,30 +98167,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38275] = 9, + [44561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2966), 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, + [44589] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2665), 1, + ACTIONS(2970), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(962), 7, + STATE(1212), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80893,30 +98223,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38315] = 9, + [44629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2667), 1, + ACTIONS(2972), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(961), 7, + STATE(1209), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80924,30 +98254,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38355] = 9, + [44669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2669), 1, + ACTIONS(2974), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(959), 7, + STATE(1222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80955,30 +98285,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38395] = 9, + [44709] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2671), 1, + ACTIONS(2976), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1023), 7, + STATE(1197), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -80986,48 +98316,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38435] = 10, + [44749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(1697), 1, - anon_sym_STAR, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1182), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(955), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2673), 3, + ACTIONS(2980), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2978), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2625), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38477] = 3, + 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, + [44777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 5, + ACTIONS(2984), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2675), 15, + ACTIONS(2982), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -81043,22 +98366,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [38505] = 3, + [44805] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2890), 1, + anon_sym_CARET, + ACTIONS(2892), 1, + anon_sym_AMP, + ACTIONS(2988), 1, + anon_sym_PIPE, + ACTIONS(2878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2986), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [44851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 5, + ACTIONS(2882), 1, anon_sym_SLASH, + ACTIONS(2878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2679), 15, + ACTIONS(2986), 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, + [44885] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_defined, + ACTIONS(2990), 1, + sym_number_literal, + ACTIONS(2940), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2942), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2946), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1204), 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, + [44925] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2878), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2988), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2986), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -81066,61 +98488,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + [44961] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_defined, + ACTIONS(2992), 1, + sym_number_literal, + ACTIONS(2940), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2942), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2946), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1221), 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, + [45001] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2896), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38533] = 9, + ACTIONS(2988), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2986), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [45041] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2577), 2, + ACTIONS(2878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2579), 2, + ACTIONS(2880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2595), 2, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 2, + ACTIONS(2898), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2599), 2, + ACTIONS(2900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 2, + ACTIONS(2988), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2621), 7, + ACTIONS(2986), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + [45083] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2892), 1, + anon_sym_AMP, + ACTIONS(2988), 1, + anon_sym_PIPE, + ACTIONS(2878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2894), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [38573] = 7, + ACTIONS(2896), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2986), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [45127] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_defined, + ACTIONS(2994), 1, + sym_number_literal, + ACTIONS(2940), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2942), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2946), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1226), 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, + [45167] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2882), 1, anon_sym_SLASH, - ACTIONS(2577), 2, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2890), 1, + anon_sym_CARET, + ACTIONS(2892), 1, + anon_sym_AMP, + ACTIONS(2878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2579), 2, + ACTIONS(2880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2599), 2, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 4, + ACTIONS(2986), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [45213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2621), 9, + ACTIONS(2996), 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, @@ -81128,16 +98703,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38609] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45241] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2886), 1, + anon_sym_AMP_AMP, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2890), 1, + anon_sym_CARET, + ACTIONS(2892), 1, + anon_sym_AMP, + ACTIONS(2878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2986), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [45289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 5, + ACTIONS(2988), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2683), 15, + ACTIONS(2986), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -81153,30 +98765,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [38637] = 9, + [45317] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2687), 1, + ACTIONS(3000), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1018), 7, + STATE(1223), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81184,25 +98796,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38677] = 6, + [45357] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2986), 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, + [45389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(3004), 5, anon_sym_SLASH, - ACTIONS(2577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2623), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2621), 11, + ACTIONS(3002), 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, @@ -81212,30 +98848,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [38711] = 9, + [45417] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2689), 1, + ACTIONS(3006), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1017), 7, + STATE(1227), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81243,30 +98879,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38751] = 9, + [45457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2691), 1, + ACTIONS(3008), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1050), 7, + STATE(1198), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81274,30 +98910,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38791] = 9, + [45497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3012), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3010), 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, + [45525] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2693), 1, + ACTIONS(3014), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1053), 7, + STATE(1219), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81305,30 +98966,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38831] = 9, + [45565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3018), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3016), 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, + [45593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2695), 1, + ACTIONS(3020), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1049), 7, + STATE(1183), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81336,30 +99022,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38871] = 9, + [45633] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2697), 1, + ACTIONS(3022), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1048), 7, + STATE(1218), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81367,30 +99053,84 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38911] = 9, + [45673] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1230), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3026), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3031), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1182), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3028), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3024), 10, + 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, + sym_identifier, + [45709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3034), 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, + [45737] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2699), 1, + ACTIONS(3038), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1047), 7, + STATE(1173), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81398,30 +99138,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38951] = 9, + [45777] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2701), 1, + ACTIONS(3040), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1046), 7, + STATE(1171), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81429,66 +99169,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [38991] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2583), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2585), 1, - anon_sym_AMP_AMP, - ACTIONS(2587), 1, - anon_sym_PIPE, - ACTIONS(2589), 1, - anon_sym_CARET, - ACTIONS(2591), 1, - anon_sym_AMP, - ACTIONS(2577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2595), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2703), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39041] = 9, + [45817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2705), 1, + ACTIONS(3042), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1045), 7, + STATE(1217), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81496,30 +99200,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39081] = 9, + [45857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2707), 1, + ACTIONS(3044), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1044), 7, + STATE(1165), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81527,30 +99231,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39121] = 9, + [45897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2709), 1, + ACTIONS(3046), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1043), 7, + STATE(1164), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81558,30 +99262,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39161] = 9, + [45937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2711), 1, + ACTIONS(3048), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1054), 7, + STATE(1162), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81589,30 +99293,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39201] = 9, + [45977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2713), 1, + ACTIONS(3050), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1042), 7, + STATE(1148), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81620,30 +99324,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39241] = 9, + [46017] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1729), 1, + anon_sym_LPAREN2, + ACTIONS(1731), 1, + anon_sym_STAR, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2352), 1, + anon_sym_LBRACK, + STATE(1334), 1, + sym__declarator, + STATE(1382), 1, + sym__abstract_declarator, + STATE(1385), 1, + sym_parameter_list, + STATE(1791), 1, + sym_ms_based_modifier, + ACTIONS(3052), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1383), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [46065] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2715), 1, + ACTIONS(3054), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1056), 7, + STATE(1160), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81651,30 +99390,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39281] = 9, + [46105] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2717), 1, + ACTIONS(3056), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1041), 7, + STATE(1170), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81682,55 +99421,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2721), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2719), 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, - [39349] = 9, + [46145] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2547), 1, + ACTIONS(2906), 1, anon_sym_LPAREN2, - ACTIONS(2549), 1, + ACTIONS(2908), 1, anon_sym_defined, - ACTIONS(2723), 1, + ACTIONS(3058), 1, sym_number_literal, - ACTIONS(2551), 2, + ACTIONS(2910), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2553), 2, + ACTIONS(2912), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2557), 5, + ACTIONS(2916), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1061), 7, + STATE(1168), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -81738,654 +99452,170 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [39389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2725), 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, - [39417] = 9, + [46185] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2609), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2611), 1, + ACTIONS(2938), 1, anon_sym_defined, - ACTIONS(2729), 1, + ACTIONS(3060), 1, sym_number_literal, - ACTIONS(2613), 2, + ACTIONS(2940), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2615), 2, + ACTIONS(2942), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2619), 5, + ACTIONS(2946), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1010), 7, + STATE(1207), 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, - [39457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2733), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2731), 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, - [39485] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1442), 1, - anon_sym_STAR, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1150), 1, - sym__declarator, - STATE(1198), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(1514), 1, - sym_ms_based_modifier, - ACTIONS(2735), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [39533] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(1697), 1, - anon_sym_STAR, - ACTIONS(2073), 1, - anon_sym_LBRACK, - STATE(1190), 1, - sym__abstract_declarator, - STATE(1210), 1, - sym_parameter_list, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2265), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1209), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2625), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39575] = 3, - ACTIONS(1833), 1, - anon_sym_LF, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(1835), 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, - [39602] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1141), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39643] = 12, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(2737), 1, - anon_sym_LF, - ACTIONS(2743), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, - anon_sym_AMP_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2749), 1, - anon_sym_CARET, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2741), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2755), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [39688] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1144), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1032), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39729] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1137), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39770] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1129), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1012), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39811] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1132), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39852] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2247), 1, - sym_primitive_type, - ACTIONS(2759), 1, - sym_identifier, - STATE(744), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2245), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2241), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2243), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39887] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1124), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1014), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [39928] = 12, - ACTIONS(2605), 1, + sym_preproc_binary_expression, + sym_char_literal, + [46225] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, - anon_sym_AMP_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2749), 1, - anon_sym_CARET, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2761), 1, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_defined, + ACTIONS(3062), 1, + sym_number_literal, + ACTIONS(2940), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2942), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2946), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1220), 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, + [46265] = 7, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [39973] = 12, - ACTIONS(2605), 1, + ACTIONS(2988), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [46300] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2884), 1, anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, + ACTIONS(2886), 1, anon_sym_AMP_AMP, - ACTIONS(2747), 1, + ACTIONS(2888), 1, anon_sym_PIPE, - ACTIONS(2749), 1, + ACTIONS(2890), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(2892), 1, anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3072), 1, + anon_sym_RPAREN, + ACTIONS(2878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(2880), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [40018] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1130), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40059] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1143), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1019), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40100] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1145), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40141] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1140), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1021), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40182] = 12, - ACTIONS(2605), 1, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46349] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(3074), 1, + anon_sym_LF, + ACTIONS(3076), 1, anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, + ACTIONS(3078), 1, anon_sym_AMP_AMP, - ACTIONS(2747), 1, + ACTIONS(3080), 1, anon_sym_PIPE, - ACTIONS(2749), 1, + ACTIONS(3082), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(3084), 1, anon_sym_AMP, - ACTIONS(2765), 1, - anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40227] = 3, - ACTIONS(2605), 1, + [46394] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2683), 1, + ACTIONS(3002), 1, anon_sym_LF, - ACTIONS(2685), 18, + ACTIONS(3004), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82404,47 +99634,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40254] = 14, - ACTIONS(3), 1, + [46421] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2978), 1, + anon_sym_LF, + ACTIONS(2980), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2583), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(2585), 1, anon_sym_AMP_AMP, - ACTIONS(2587), 1, anon_sym_PIPE, - ACTIONS(2589), 1, anon_sym_CARET, - ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2767), 1, - anon_sym_RPAREN, - ACTIONS(2577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2595), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2599), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40303] = 3, - ACTIONS(2605), 1, + [46448] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(2966), 1, anon_sym_LF, - ACTIONS(2681), 18, + ACTIONS(2968), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82463,12 +99682,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40330] = 3, - ACTIONS(2605), 1, + [46475] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(3034), 1, anon_sym_LF, - ACTIONS(2677), 18, + ACTIONS(3036), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82487,357 +99706,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40357] = 12, - ACTIONS(2605), 1, + [46502] = 8, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2743), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, - anon_sym_AMP_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2749), 1, - anon_sym_CARET, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2769), 1, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40402] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1133), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40443] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1135), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1029), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40484] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1136), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40525] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1126), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40566] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1123), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1052), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40607] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1134), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(1031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40648] = 12, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(2743), 1, + ACTIONS(2988), 5, anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, anon_sym_AMP_AMP, - ACTIONS(2747), 1, anon_sym_PIPE, - ACTIONS(2749), 1, anon_sym_CARET, - ACTIONS(2751), 1, anon_sym_AMP, - ACTIONS(2771), 1, + [46539] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(2996), 1, anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(2998), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2757), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + [46566] = 4, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LF, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(2988), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [40693] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, - anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1098), 1, - sym__declarator, - STATE(1514), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40734] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2351), 1, - anon_sym_LPAREN2, - ACTIONS(2353), 1, - anon_sym_STAR, - STATE(1106), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1167), 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40775] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, - anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1101), 1, - sym__declarator, - STATE(1514), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [40816] = 3, - ACTIONS(2605), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46595] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2627), 1, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(2629), 18, + ACTIONS(2988), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82856,17 +99808,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40843] = 3, - ACTIONS(2605), 1, + [46622] = 6, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2633), 1, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(2635), 18, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3070), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2988), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -82878,20 +99835,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40870] = 4, - ACTIONS(2605), 1, + [46655] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(3076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3078), 1, + anon_sym_AMP_AMP, + ACTIONS(3080), 1, + anon_sym_PIPE, + ACTIONS(3082), 1, + anon_sym_CARET, + ACTIONS(3084), 1, + anon_sym_AMP, + ACTIONS(3088), 1, anon_sym_LF, - ACTIONS(2741), 3, + ACTIONS(3064), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3070), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2623), 15, + ACTIONS(3068), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [46700] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(2982), 1, + anon_sym_LF, + ACTIONS(2984), 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, @@ -82905,12 +99892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40899] = 3, - ACTIONS(2605), 1, + [46727] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(3010), 1, anon_sym_LF, - ACTIONS(2623), 18, + ACTIONS(3012), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82929,433 +99916,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [40926] = 11, - ACTIONS(2605), 1, + [46754] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_LF, - ACTIONS(2747), 1, + ACTIONS(2882), 1, + anon_sym_SLASH, + ACTIONS(2884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2886), 1, + anon_sym_AMP_AMP, + ACTIONS(2888), 1, anon_sym_PIPE, - ACTIONS(2749), 1, + ACTIONS(2890), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(2892), 1, anon_sym_AMP, - ACTIONS(2623), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2739), 2, + ACTIONS(3090), 1, + anon_sym_RPAREN, + ACTIONS(2878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(2880), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(2894), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2896), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2898), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [40969] = 10, - ACTIONS(2605), 1, + ACTIONS(2900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46803] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_LF, - ACTIONS(2749), 1, + ACTIONS(3076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3078), 1, + anon_sym_AMP_AMP, + ACTIONS(3080), 1, + anon_sym_PIPE, + ACTIONS(3082), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(3084), 1, anon_sym_AMP, - ACTIONS(2739), 2, + ACTIONS(3092), 1, + anon_sym_LF, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2623), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [41010] = 9, - ACTIONS(2605), 1, + [46848] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, + ACTIONS(3066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2988), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2757), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + [46879] = 3, + ACTIONS(2256), 1, + anon_sym_LF, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(2258), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2623), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2755), 4, + 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, - [41049] = 8, - ACTIONS(2605), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46906] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(3076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3078), 1, + anon_sym_AMP_AMP, + ACTIONS(3080), 1, + anon_sym_PIPE, + ACTIONS(3082), 1, + anon_sym_CARET, + ACTIONS(3084), 1, + anon_sym_AMP, + ACTIONS(3094), 1, anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2623), 5, + [46951] = 12, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3076), 1, anon_sym_PIPE_PIPE, + ACTIONS(3078), 1, anon_sym_AMP_AMP, + ACTIONS(3080), 1, anon_sym_PIPE, + ACTIONS(3082), 1, anon_sym_CARET, + ACTIONS(3084), 1, anon_sym_AMP, - [41086] = 7, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(2621), 1, + ACTIONS(3096), 1, anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2623), 7, + [46996] = 12, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LF, + ACTIONS(2988), 1, anon_sym_PIPE_PIPE, + ACTIONS(3078), 1, anon_sym_AMP_AMP, + ACTIONS(3080), 1, anon_sym_PIPE, + ACTIONS(3082), 1, anon_sym_CARET, + ACTIONS(3084), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41121] = 6, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(2621), 1, - anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2623), 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(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [41154] = 5, - ACTIONS(2605), 1, + [47041] = 11, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2623), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3080), 1, anon_sym_PIPE, + ACTIONS(3082), 1, anon_sym_CARET, + ACTIONS(3084), 1, anon_sym_AMP, + ACTIONS(2988), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3064), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3070), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3086), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41185] = 12, - ACTIONS(2605), 1, + [47084] = 10, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2743), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, - anon_sym_AMP_AMP, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2749), 1, + ACTIONS(2986), 1, + anon_sym_LF, + ACTIONS(3082), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(3084), 1, anon_sym_AMP, - ACTIONS(2773), 1, - anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2988), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [41230] = 3, - ACTIONS(2605), 1, + [47125] = 9, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2731), 1, + ACTIONS(2986), 1, anon_sym_LF, - ACTIONS(2733), 18, + ACTIONS(3084), 1, + anon_sym_AMP, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3070), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2988), 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, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41257] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1125), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [41298] = 12, - ACTIONS(2605), 1, + [47164] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(3076), 1, anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, + ACTIONS(3078), 1, anon_sym_AMP_AMP, - ACTIONS(2747), 1, + ACTIONS(3080), 1, anon_sym_PIPE, - ACTIONS(2749), 1, + ACTIONS(3082), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(3084), 1, anon_sym_AMP, - ACTIONS(2775), 1, + ACTIONS(3098), 1, anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [41343] = 12, - ACTIONS(2605), 1, + [47209] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_LF, - ACTIONS(2623), 1, + ACTIONS(3076), 1, anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, + ACTIONS(3078), 1, anon_sym_AMP_AMP, - ACTIONS(2747), 1, + ACTIONS(3080), 1, anon_sym_PIPE, - ACTIONS(2749), 1, + ACTIONS(3082), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(3084), 1, anon_sym_AMP, - ACTIONS(2739), 2, + ACTIONS(3100), 1, + anon_sym_LF, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [41388] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, - anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1084), 1, - sym__declarator, - STATE(1514), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [41429] = 12, - ACTIONS(2605), 1, + [47254] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(3076), 1, anon_sym_PIPE_PIPE, - ACTIONS(2745), 1, + ACTIONS(3078), 1, anon_sym_AMP_AMP, - ACTIONS(2747), 1, + ACTIONS(3080), 1, anon_sym_PIPE, - ACTIONS(2749), 1, + ACTIONS(3082), 1, anon_sym_CARET, - ACTIONS(2751), 1, + ACTIONS(3084), 1, anon_sym_AMP, - ACTIONS(2777), 1, + ACTIONS(3102), 1, anon_sym_LF, - ACTIONS(2739), 2, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2757), 2, + ACTIONS(3070), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2755), 4, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [41474] = 3, - ACTIONS(2605), 1, + [47299] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2719), 1, + ACTIONS(3016), 1, anon_sym_LF, - ACTIONS(2721), 18, + ACTIONS(3018), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83374,223 +100349,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [41501] = 3, - ACTIONS(2605), 1, + [47326] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(3076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3078), 1, + anon_sym_AMP_AMP, + ACTIONS(3080), 1, + anon_sym_PIPE, + ACTIONS(3082), 1, + anon_sym_CARET, + ACTIONS(3084), 1, + anon_sym_AMP, + ACTIONS(3104), 1, anon_sym_LF, - ACTIONS(2727), 18, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3070), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3086), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3068), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [47371] = 12, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3076), 1, anon_sym_PIPE_PIPE, + ACTIONS(3078), 1, anon_sym_AMP_AMP, + ACTIONS(3080), 1, anon_sym_PIPE, + ACTIONS(3082), 1, anon_sym_CARET, + ACTIONS(3084), 1, anon_sym_AMP, + ACTIONS(3106), 1, + anon_sym_LF, + ACTIONS(3064), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3070), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3086), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3068), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41528] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2351), 1, - anon_sym_LPAREN2, - ACTIONS(2353), 1, - anon_sym_STAR, - STATE(1115), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1167), 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [41569] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1128), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [41610] = 14, - ACTIONS(3), 1, + [47416] = 12, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2581), 1, - anon_sym_SLASH, - ACTIONS(2583), 1, + ACTIONS(3076), 1, anon_sym_PIPE_PIPE, - ACTIONS(2585), 1, + ACTIONS(3078), 1, anon_sym_AMP_AMP, - ACTIONS(2587), 1, + ACTIONS(3080), 1, anon_sym_PIPE, - ACTIONS(2589), 1, + ACTIONS(3082), 1, anon_sym_CARET, - ACTIONS(2591), 1, + ACTIONS(3084), 1, anon_sym_AMP, - ACTIONS(2779), 1, - anon_sym_RPAREN, - ACTIONS(2577), 2, + ACTIONS(3108), 1, + anon_sym_LF, + ACTIONS(3064), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2579), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2593), 2, + ACTIONS(3070), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3086), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2595), 2, + ACTIONS(3066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3068), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41659] = 10, + anon_sym_LT, + [47461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2351), 1, + ACTIONS(3112), 2, anon_sym_LPAREN2, - ACTIONS(2353), 1, anon_sym_STAR, - STATE(1116), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1167), 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [41700] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, + ACTIONS(3110), 15, anon_sym___based, - ACTIONS(2339), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_LPAREN2, - ACTIONS(2343), 1, - anon_sym_STAR, - STATE(1122), 1, - sym__type_declarator, - STATE(1489), 1, - sym_ms_based_modifier, - STATE(910), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [41741] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1066), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(2783), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(2788), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2785), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2781), 8, - anon_sym___based, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [41775] = 3, + [47486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 2, + ACTIONS(3116), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2791), 13, + ACTIONS(3114), 15, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -83598,757 +100484,713 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__unaligned, anon_sym___unaligned, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [41798] = 3, + [47511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 2, + ACTIONS(2568), 1, + anon_sym_const, + ACTIONS(2572), 1, + anon_sym_LBRACE, + ACTIONS(3118), 1, + anon_sym_COLON, + STATE(1073), 1, + sym_enumerator_list, + ACTIONS(2570), 10, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2795), 13, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [41821] = 9, + anon_sym_noreturn, + [47539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2335), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(187), 1, + anon_sym_LBRACE, + ACTIONS(3121), 1, + anon_sym_COMMA, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, - anon_sym_STAR, - STATE(1109), 1, - sym__declarator, - STATE(1322), 1, - sym_init_declarator, - STATE(1514), 1, - sym_ms_based_modifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [41853] = 9, + ACTIONS(3125), 1, + anon_sym_SEMI, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 1, + anon_sym_EQ, + STATE(196), 1, + sym_compound_statement, + STATE(1275), 1, + sym_parameter_list, + STATE(1513), 1, + aux_sym_declaration_repeat1, + STATE(1288), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [47577] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1108), 1, + STATE(1286), 1, sym__declarator, - STATE(1308), 1, + STATE(1425), 1, sym_init_declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [41885] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2803), 1, - anon_sym_SEMI, - ACTIONS(2805), 1, - anon_sym_LBRACK, - ACTIONS(2807), 1, - anon_sym_EQ, - STATE(369), 1, - sym_compound_statement, - STATE(1103), 1, - sym_parameter_list, - STATE(1264), 1, - aux_sym_declaration_repeat1, - STATE(1113), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41923] = 9, + [47609] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2349), 1, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2351), 1, + ACTIONS(2504), 1, anon_sym_LPAREN2, - ACTIONS(2353), 1, + ACTIONS(2506), 1, anon_sym_STAR, - ACTIONS(2809), 1, + ACTIONS(3131), 1, anon_sym_SEMI, - STATE(1090), 1, + STATE(1252), 1, sym__field_declarator, - STATE(1578), 1, + STATE(1706), 1, sym_ms_based_modifier, - STATE(1167), 5, + STATE(1344), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [41955] = 9, + [47641] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2504), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2506), 1, anon_sym_STAR, - STATE(1127), 1, - sym__declarator, - STATE(1374), 1, - sym_init_declarator, - STATE(1514), 1, + ACTIONS(3133), 1, + anon_sym_SEMI, + STATE(1263), 1, + sym__field_declarator, + STATE(1706), 1, sym_ms_based_modifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [41987] = 9, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [47673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2504), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2506), 1, anon_sym_STAR, - STATE(1077), 1, - sym__declarator, - STATE(1308), 1, - sym_init_declarator, - STATE(1514), 1, + ACTIONS(3135), 1, + anon_sym_SEMI, + STATE(1254), 1, + sym__field_declarator, + STATE(1706), 1, sym_ms_based_modifier, - STATE(1160), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [42019] = 9, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [47705] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1114), 1, + STATE(1284), 1, sym__declarator, - STATE(1285), 1, + STATE(1487), 1, sym_init_declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42051] = 12, + [47737] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(401), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2807), 1, + ACTIONS(3129), 1, anon_sym_EQ, - ACTIONS(2811), 1, + ACTIONS(3137), 1, anon_sym_SEMI, STATE(362), 1, sym_compound_statement, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1274), 1, + STATE(1470), 1, aux_sym_declaration_repeat1, - STATE(1113), 2, + STATE(1288), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [47775] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(458), 1, + anon_sym_LBRACE, + ACTIONS(3121), 1, + anon_sym_COMMA, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 1, + anon_sym_EQ, + ACTIONS(3139), 1, + anon_sym_SEMI, + STATE(440), 1, + sym_compound_statement, + STATE(1275), 1, + sym_parameter_list, + STATE(1515), 1, + aux_sym_declaration_repeat1, + STATE(1288), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [47813] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(642), 1, + anon_sym_LBRACE, + ACTIONS(3121), 1, + anon_sym_COMMA, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 1, + anon_sym_EQ, + ACTIONS(3141), 1, + anon_sym_SEMI, + STATE(481), 1, + sym_compound_statement, + STATE(1275), 1, + sym_parameter_list, + STATE(1484), 1, + aux_sym_declaration_repeat1, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42089] = 9, + [47851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(1239), 1, sym__declarator, - STATE(1322), 1, + STATE(1487), 1, sym_init_declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42121] = 9, + [47883] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1082), 1, + STATE(1310), 1, sym__declarator, - STATE(1304), 1, + STATE(1578), 1, sym_init_declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42153] = 12, + [47915] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(443), 1, - anon_sym_LBRACE, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, - anon_sym_LBRACK, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2813), 1, - anon_sym_SEMI, - STATE(355), 1, - sym_compound_statement, - STATE(1103), 1, - sym_parameter_list, - STATE(1327), 1, - aux_sym_declaration_repeat1, - STATE(1113), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [42191] = 9, + ACTIONS(2490), 1, + anon_sym_STAR, + STATE(1240), 1, + sym__declarator, + STATE(1529), 1, + sym_init_declarator, + STATE(1791), 1, + sym_ms_based_modifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [47947] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2349), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2351), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2353), 1, + ACTIONS(2490), 1, anon_sym_STAR, - ACTIONS(2815), 1, - anon_sym_SEMI, - STATE(1088), 1, - sym__field_declarator, - STATE(1578), 1, + STATE(1276), 1, + sym__declarator, + STATE(1491), 1, + sym_init_declarator, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1167), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [42223] = 9, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [47979] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2349), 1, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2351), 1, + ACTIONS(2504), 1, anon_sym_LPAREN2, - ACTIONS(2353), 1, + ACTIONS(2506), 1, anon_sym_STAR, - ACTIONS(2817), 1, + ACTIONS(3143), 1, anon_sym_SEMI, - STATE(1092), 1, + STATE(1272), 1, sym__field_declarator, - STATE(1578), 1, + STATE(1706), 1, sym_ms_based_modifier, - STATE(1167), 5, + STATE(1344), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [42255] = 9, + [48011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1074), 1, + STATE(1277), 1, sym__declarator, - STATE(1285), 1, + STATE(1529), 1, sym_init_declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42287] = 9, + [48043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1282), 1, sym__declarator, - STATE(1304), 1, + STATE(1503), 1, sym_init_declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42319] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(121), 1, - anon_sym_LBRACE, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2805), 1, - anon_sym_LBRACK, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2819), 1, - anon_sym_SEMI, - STATE(211), 1, - sym_compound_statement, - STATE(1103), 1, - sym_parameter_list, - STATE(1316), 1, - aux_sym_declaration_repeat1, - STATE(1113), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [42357] = 5, + [48075] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(2821), 1, - anon_sym_COLON, - STATE(925), 1, - sym_enumerator_list, - ACTIONS(2421), 9, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, anon_sym_LPAREN2, + ACTIONS(2490), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [42381] = 7, + STATE(1238), 1, + sym__declarator, + STATE(1491), 1, + sym_init_declarator, + STATE(1791), 1, + sym_ms_based_modifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [48107] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(125), 1, + anon_sym_LBRACE, + ACTIONS(3121), 1, + anon_sym_COMMA, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(1103), 1, - sym_parameter_list, - STATE(1113), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2824), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3129), 1, anon_sym_EQ, - [42408] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2831), 1, - anon_sym_LBRACK, - STATE(1085), 2, + ACTIONS(3145), 1, + anon_sym_SEMI, + STATE(145), 1, + sym_compound_statement, + STATE(1275), 1, + sym_parameter_list, + STATE(1435), 1, + aux_sym_declaration_repeat1, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2826), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [42431] = 5, + [48145] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, - anon_sym___attribute__, - ACTIONS(2838), 1, - anon_sym_LBRACK, - STATE(1086), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2833), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2344), 1, + sym_identifier, + ACTIONS(2488), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [42454] = 8, + ACTIONS(2490), 1, + anon_sym_STAR, + STATE(1249), 1, + sym__declarator, + STATE(1425), 1, + sym_init_declarator, + STATE(1791), 1, + sym_ms_based_modifier, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [48177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2339), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2341), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2343), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1158), 1, - sym__type_declarator, - STATE(1489), 1, + STATE(1232), 1, + sym__declarator, + STATE(1503), 1, + sym_init_declarator, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [42483] = 11, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [48209] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2840), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(3149), 1, anon_sym_SEMI, - ACTIONS(2844), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(1174), 1, + STATE(1342), 1, sym_parameter_list, - STATE(1265), 1, + STATE(1453), 1, sym_bitfield_clause, - STATE(1266), 1, + STATE(1454), 1, aux_sym_field_declaration_repeat1, - STATE(1146), 2, + STATE(1314), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42518] = 8, + [48244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1156), 1, + STATE(1331), 1, sym__declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42547] = 11, + [48273] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2840), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(2844), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(3153), 1, anon_sym_COLON, - ACTIONS(2848), 1, + ACTIONS(3155), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(1342), 1, sym_parameter_list, - STATE(1250), 1, - aux_sym_field_declaration_repeat1, - STATE(1315), 1, + STATE(1499), 1, sym_bitfield_clause, - STATE(1146), 2, + STATE(1500), 1, + aux_sym_field_declaration_repeat1, + STATE(1314), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [42582] = 8, + [48308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1148), 1, + STATE(1327), 1, sym__declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42611] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2840), 1, - anon_sym_COMMA, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_COLON, - ACTIONS(2850), 1, - anon_sym_SEMI, - STATE(1174), 1, - sym_parameter_list, - STATE(1339), 1, - sym_bitfield_clause, - STATE(1340), 1, - aux_sym_field_declaration_repeat1, - STATE(1146), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [42646] = 8, + [48337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2339), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2341), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2343), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1163), 1, - sym__type_declarator, - STATE(1489), 1, + STATE(1350), 1, + sym__declarator, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1176), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [42675] = 8, + STATE(1339), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [48366] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1147), 1, + STATE(1329), 1, sym__declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42704] = 7, + [48395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3159), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3162), 1, anon_sym_LBRACK, - STATE(1103), 1, - sym_parameter_list, - STATE(1113), 2, + STATE(1258), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2852), 5, + ACTIONS(3157), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [42731] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym___based, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2351), 1, - anon_sym_LPAREN2, - ACTIONS(2353), 1, - anon_sym_STAR, - STATE(1166), 1, - sym__field_declarator, - STATE(1578), 1, - sym_ms_based_modifier, - STATE(1167), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [42760] = 8, + anon_sym_COLON, + [48418] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1162), 1, + STATE(1323), 1, sym__declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [42789] = 7, + [48447] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2854), 5, + ACTIONS(3164), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [42816] = 5, + [48474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(3168), 1, anon_sym___attribute__, - ACTIONS(2860), 1, + ACTIONS(3170), 1, anon_sym_LBRACK, - STATE(1086), 2, + STATE(1264), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2856), 7, + ACTIONS(3166), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84356,58 +101198,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [42839] = 7, + [48497] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - sym_identifier, - ACTIONS(2862), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3127), 1, + anon_sym_LBRACK, + STATE(1275), 1, + sym_parameter_list, + STATE(1288), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3172), 5, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2864), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [48524] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(1258), 1, - sym_gnu_asm_output_operand_list, - STATE(506), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [42866] = 7, + ACTIONS(3174), 1, + anon_sym_SEMI, + STATE(1342), 1, + sym_parameter_list, + STATE(1442), 1, + sym_bitfield_clause, + STATE(1481), 1, + aux_sym_field_declaration_repeat1, + STATE(1314), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [48559] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 1, + anon_sym___attribute__, + ACTIONS(3181), 1, + anon_sym_LBRACK, + STATE(1264), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3176), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [48582] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2866), 5, + ACTIONS(3183), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [42893] = 7, + [48609] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(2082), 1, sym_identifier, - ACTIONS(2864), 1, - anon_sym_COLON, - ACTIONS(2868), 1, + ACTIONS(3185), 1, anon_sym_RPAREN, - STATE(1319), 1, + ACTIONS(3187), 1, + anon_sym_COLON, + STATE(1474), 1, sym_gnu_asm_output_operand_list, - STATE(506), 2, + STATE(717), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(93), 5, @@ -84416,176 +101300,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [42920] = 5, + [48636] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, - anon_sym___attribute__, - ACTIONS(2872), 1, - anon_sym_LBRACK, - STATE(1099), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2870), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [42943] = 8, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1343), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [48665] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2349), 1, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2351), 1, + ACTIONS(2504), 1, anon_sym_LPAREN2, - ACTIONS(2353), 1, + ACTIONS(2506), 1, anon_sym_STAR, - STATE(1117), 1, + STATE(1280), 1, sym__field_declarator, - STATE(1578), 1, + STATE(1706), 1, sym_ms_based_modifier, - STATE(1167), 5, + STATE(1344), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [42972] = 8, + [48694] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 1, + sym_identifier, + ACTIONS(3187), 1, + anon_sym_COLON, + ACTIONS(3189), 1, + anon_sym_RPAREN, + STATE(1428), 1, + sym_gnu_asm_output_operand_list, + STATE(717), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [48721] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(1733), 1, anon_sym___based, - ACTIONS(2065), 1, + ACTIONS(2344), 1, sym_identifier, - ACTIONS(2335), 1, + ACTIONS(2488), 1, anon_sym_LPAREN2, - ACTIONS(2337), 1, + ACTIONS(2490), 1, anon_sym_STAR, - STATE(1164), 1, + STATE(1336), 1, sym__declarator, - STATE(1514), 1, + STATE(1791), 1, sym_ms_based_modifier, - STATE(1160), 5, + STATE(1339), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [43001] = 7, + [48750] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2492), 1, + sym_identifier, + ACTIONS(2494), 1, + anon_sym_LPAREN2, + ACTIONS(2496), 1, + anon_sym_STAR, + STATE(1335), 1, + sym__type_declarator, + STATE(1770), 1, + sym_ms_based_modifier, + STATE(1362), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [48779] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3151), 1, anon_sym_LBRACK, - STATE(1174), 1, + ACTIONS(3153), 1, + anon_sym_COLON, + ACTIONS(3191), 1, + anon_sym_SEMI, + STATE(1342), 1, sym_parameter_list, - STATE(1146), 2, + STATE(1459), 1, + aux_sym_field_declaration_repeat1, + STATE(1479), 1, + sym_bitfield_clause, + STATE(1314), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2874), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [43027] = 10, + [48814] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym___based, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_STAR, + STATE(1341), 1, + sym__field_declarator, + STATE(1706), 1, + sym_ms_based_modifier, + STATE(1344), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [48843] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2819), 1, - anon_sym_SEMI, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1316), 1, - aux_sym_declaration_repeat1, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43059] = 10, + ACTIONS(3193), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [48870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3168), 1, + anon_sym___attribute__, + ACTIONS(3197), 1, + anon_sym_LBRACK, + STATE(1261), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3195), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [48893] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2807), 1, + ACTIONS(3129), 1, anon_sym_EQ, - ACTIONS(2813), 1, + ACTIONS(3137), 1, anon_sym_SEMI, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1327), 1, + STATE(1470), 1, aux_sym_declaration_repeat1, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43091] = 10, + [48925] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2803), 1, - anon_sym_SEMI, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2807), 1, + ACTIONS(3129), 1, anon_sym_EQ, - STATE(1103), 1, + ACTIONS(3141), 1, + anon_sym_SEMI, + STATE(1275), 1, sym_parameter_list, - STATE(1264), 1, + STATE(1484), 1, aux_sym_declaration_repeat1, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43123] = 7, + [48957] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - STATE(1174), 1, + STATE(1342), 1, sym_parameter_list, - STATE(1146), 2, + STATE(1314), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2876), 4, + ACTIONS(3199), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [43149] = 3, + [48983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3203), 1, anon_sym_LBRACK, - ACTIONS(2878), 9, + ACTIONS(3201), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84595,132 +101565,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [43167] = 6, + [49001] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3151), 1, anon_sym_LBRACK, - STATE(1219), 1, - sym_gnu_asm_input_operand, - STATE(1569), 1, - sym_string_literal, - ACTIONS(2882), 2, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(1342), 1, + sym_parameter_list, + STATE(1550), 1, + sym_bitfield_clause, + ACTIONS(3205), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1314), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [49031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3209), 1, + anon_sym_LBRACK, + ACTIONS(3207), 9, + 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_COLON, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [43191] = 5, + [49049] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2888), 1, + ACTIONS(3121), 1, + anon_sym_COMMA, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3125), 1, + anon_sym_SEMI, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(1085), 2, + ACTIONS(3129), 1, + anon_sym_EQ, + STATE(1275), 1, + sym_parameter_list, + STATE(1513), 1, + aux_sym_declaration_repeat1, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2886), 6, + [49081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3213), 1, + anon_sym_LBRACK, + ACTIONS(3211), 9, 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, - [43213] = 10, + anon_sym_COLON, + [49099] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2807), 1, + ACTIONS(3129), 1, anon_sym_EQ, - ACTIONS(2811), 1, + ACTIONS(3139), 1, anon_sym_SEMI, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1274), 1, + STATE(1515), 1, aux_sym_declaration_repeat1, - STATE(1113), 2, + STATE(1288), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [49131] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3217), 1, + anon_sym_LBRACK, + STATE(1398), 1, + sym_gnu_asm_input_operand, + STATE(1759), 1, + sym_string_literal, + ACTIONS(3215), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [49155] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3121), 1, + anon_sym_COMMA, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 1, + anon_sym_EQ, + ACTIONS(3145), 1, + anon_sym_SEMI, + STATE(1275), 1, + sym_parameter_list, + STATE(1435), 1, + aux_sym_declaration_repeat1, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43245] = 7, + [49187] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - STATE(1174), 1, + STATE(1342), 1, sym_parameter_list, - STATE(1146), 2, + STATE(1314), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2890), 4, + ACTIONS(3219), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [43271] = 7, + [49213] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3223), 1, + anon_sym_LBRACK, + STATE(1258), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3221), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [49235] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - STATE(1174), 1, + STATE(1342), 1, sym_parameter_list, - STATE(1146), 2, + STATE(1314), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2892), 4, + ACTIONS(3225), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [43297] = 9, + [49261] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_COLON, - STATE(1174), 1, + STATE(1342), 1, sym_parameter_list, - STATE(1394), 1, - sym_bitfield_clause, - ACTIONS(2894), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1146), 2, + STATE(1314), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43327] = 6, + ACTIONS(3227), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [49287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, + ACTIONS(3231), 1, anon_sym_LBRACK, - STATE(1216), 1, + STATE(1406), 1, sym_gnu_asm_output_operand, - STATE(1481), 1, + STATE(1626), 1, sym_string_literal, - ACTIONS(2896), 2, + ACTIONS(3229), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(93), 5, @@ -84729,629 +101792,631 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [43351] = 3, + [49311] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_SEMI, + ACTIONS(3237), 1, + anon_sym_LBRACK, + STATE(1358), 1, + sym_parameter_list, + STATE(1462), 1, + aux_sym_type_definition_repeat2, + STATE(1338), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [49340] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, anon_sym_LBRACK, - ACTIONS(2900), 9, + STATE(1358), 1, + sym_parameter_list, + STATE(1338), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3239), 3, 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_COLON, - [43369] = 3, + [49365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, anon_sym_LBRACK, - ACTIONS(2904), 9, + STATE(1358), 1, + sym_parameter_list, + STATE(1338), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3241), 3, 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_COLON, - [43387] = 5, + [49390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(3243), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(3247), 1, sym_system_lib_string, - STATE(1581), 2, + STATE(1687), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2910), 5, + ACTIONS(3245), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [43408] = 7, + [49411] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - STATE(1188), 1, - sym_parameter_list, - STATE(1151), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2914), 3, + ACTIONS(3233), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [43433] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3237), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, - anon_sym_COMMA, - ACTIONS(2920), 1, + ACTIONS(3249), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1321), 1, + STATE(1452), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43462] = 9, + [49440] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2922), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3251), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1260), 1, + STATE(1455), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43491] = 9, + [49469] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2924), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3253), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1309), 1, + STATE(1530), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43520] = 9, + [49498] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2926), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1324), 1, + STATE(1512), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43549] = 8, + [49527] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, - anon_sym_LBRACK, - ACTIONS(2807), 1, - anon_sym_EQ, - STATE(1103), 1, - sym_parameter_list, - ACTIONS(2928), 2, + ACTIONS(3233), 1, anon_sym_COMMA, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3257), 1, anon_sym_SEMI, - STATE(1113), 2, + STATE(1358), 1, + sym_parameter_list, + STATE(1520), 1, + aux_sym_type_definition_repeat2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43576] = 7, + [49556] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3237), 1, anon_sym_LBRACK, - STATE(1188), 1, + ACTIONS(3259), 1, + anon_sym_SEMI, + STATE(1358), 1, sym_parameter_list, - STATE(1151), 2, + STATE(1460), 1, + aux_sym_type_definition_repeat2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2930), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [43601] = 9, + [49585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, + sym_identifier, + ACTIONS(3263), 1, + sym_system_lib_string, + STATE(1736), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3245), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [49606] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2932), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3265), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1254), 1, + STATE(1476), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43630] = 9, + [49635] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2934), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3267), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1320), 1, + STATE(1423), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43659] = 5, + [49664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(2938), 1, + ACTIONS(3271), 1, sym_system_lib_string, - STATE(1556), 2, + STATE(1824), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2910), 5, + ACTIONS(3245), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [43680] = 9, + [49685] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2940), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3273), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1255), 1, + STATE(1448), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43709] = 9, + [49714] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2942), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3275), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1244), 1, + STATE(1469), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43738] = 9, + [49743] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2944), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3277), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1307), 1, + STATE(1527), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43767] = 9, + [49772] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2946), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3279), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1249), 1, + STATE(1447), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43796] = 9, + [49801] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3129), 1, + anon_sym_EQ, + STATE(1275), 1, + sym_parameter_list, + ACTIONS(3281), 2, anon_sym_COMMA, - ACTIONS(2948), 1, anon_sym_SEMI, - STATE(1188), 1, - sym_parameter_list, - STATE(1247), 1, - aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43825] = 9, + [49828] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2950), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3283), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1251), 1, + STATE(1421), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43854] = 5, + [49857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(3287), 1, sym_system_lib_string, - STATE(1421), 2, + STATE(1699), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2910), 5, + ACTIONS(3245), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [43875] = 7, + [49878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 1, + sym_identifier, + ACTIONS(3291), 1, + sym_system_lib_string, + STATE(1609), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3245), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [49899] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3295), 1, anon_sym_LBRACK, - STATE(1188), 1, - sym_parameter_list, - STATE(1151), 2, + STATE(1258), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2956), 3, + ACTIONS(3293), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [43900] = 9, + anon_sym_COLON, + [49920] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3237), 1, anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3297), 1, + anon_sym_SEMI, + STATE(1358), 1, + sym_parameter_list, + STATE(1523), 1, + aux_sym_type_definition_repeat2, + STATE(1338), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [49949] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2958), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3299), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1323), 1, + STATE(1496), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [43929] = 7, + [49978] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3237), 1, anon_sym_LBRACK, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2960), 3, + ACTIONS(3301), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [43954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2962), 1, - sym_identifier, - ACTIONS(2964), 1, - sym_system_lib_string, - STATE(1414), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2910), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [43975] = 9, + [50003] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2966), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3303), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1334), 1, + STATE(1489), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44004] = 9, + [50032] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2968), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3305), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1295), 1, + STATE(1531), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44033] = 9, + [50061] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, - anon_sym_LBRACK, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(2970), 1, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3307), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1337), 1, + STATE(1480), 1, aux_sym_type_definition_repeat2, - STATE(1151), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44062] = 5, + [50090] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2974), 1, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3237), 1, anon_sym_LBRACK, - STATE(1085), 2, + ACTIONS(3309), 1, + anon_sym_SEMI, + STATE(1358), 1, + sym_parameter_list, + STATE(1439), 1, + aux_sym_type_definition_repeat2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2972), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - [44083] = 8, + [50119] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(443), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3237), 1, anon_sym_LBRACK, - STATE(390), 1, - sym_compound_statement, - STATE(1103), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44109] = 8, + ACTIONS(3311), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [50144] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(121), 1, + ACTIONS(458), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(151), 1, + STATE(407), 1, sym_compound_statement, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44135] = 5, + [50170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, - anon_sym_LBRACK, - STATE(1283), 1, - sym_gnu_asm_output_operand, - STATE(1481), 1, + STATE(1400), 1, sym_string_literal, + ACTIONS(3313), 2, + anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(93), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [44155] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2805), 1, - anon_sym_LBRACK, - STATE(1103), 1, - sym_parameter_list, - ACTIONS(2976), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1113), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [44179] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2980), 1, - anon_sym_LBRACK, - STATE(1085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2978), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [44199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2982), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [44215] = 3, + [50188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(3317), 1, anon_sym_LBRACK, - ACTIONS(2986), 7, + ACTIONS(3315), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85359,26 +102424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [44231] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1236), 1, - sym_string_literal, - ACTIONS(2990), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [44249] = 3, + [50204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(3321), 1, anon_sym_LBRACK, - ACTIONS(2992), 7, + ACTIONS(3319), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85386,62 +102437,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [44265] = 8, + [50220] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(401), 1, + ACTIONS(187), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(388), 1, + STATE(191), 1, sym_compound_statement, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44291] = 3, + [50246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 1, + ACTIONS(3217), 1, anon_sym_LBRACK, - ACTIONS(2996), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [44307] = 7, + STATE(1492), 1, + sym_gnu_asm_input_operand, + STATE(1759), 1, + sym_string_literal, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [50266] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(642), 1, + anon_sym_LBRACE, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(1188), 1, + STATE(467), 1, + sym_compound_statement, + STATE(1275), 1, sym_parameter_list, - ACTIONS(3000), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1151), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44331] = 5, + [50292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(3231), 1, anon_sym_LBRACK, - STATE(1336), 1, - sym_gnu_asm_input_operand, - STATE(1569), 1, + STATE(1518), 1, + sym_gnu_asm_output_operand, + STATE(1626), 1, sym_string_literal, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -85449,12 +102503,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [44351] = 3, + [50312] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(125), 1, + anon_sym_LBRACE, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3127), 1, + anon_sym_LBRACK, + STATE(131), 1, + sym_compound_statement, + STATE(1275), 1, + sym_parameter_list, + STATE(1288), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [50338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3325), 1, anon_sym_LBRACK, - ACTIONS(3002), 7, + ACTIONS(3323), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85462,12 +102534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [44367] = 3, + [50354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3329), 1, anon_sym_LBRACK, - ACTIONS(3006), 7, + ACTIONS(3327), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85475,151 +102547,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [44383] = 8, + [50370] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - STATE(332), 1, - sym_compound_statement, - STATE(1103), 1, + STATE(1275), 1, sym_parameter_list, - STATE(1113), 2, + ACTIONS(3331), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44409] = 7, + [50394] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2916), 1, + ACTIONS(3237), 1, anon_sym_LBRACK, - ACTIONS(3010), 1, - anon_sym_RPAREN, - STATE(1188), 1, + STATE(1358), 1, sym_parameter_list, - STATE(1151), 2, + ACTIONS(3333), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1338), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44432] = 7, + [50418] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(2805), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(3012), 1, - anon_sym_RPAREN, - STATE(1103), 1, + STATE(433), 1, + sym_compound_statement, + STATE(1275), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44455] = 3, + [50444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3337), 1, anon_sym_LBRACK, - ACTIONS(3014), 6, + ACTIONS(3335), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [44470] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + [50460] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(3341), 1, anon_sym_LBRACK, - ACTIONS(3018), 1, - anon_sym_RPAREN, - STATE(1174), 1, - sym_parameter_list, - STATE(1146), 2, + STATE(1258), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [44493] = 3, + ACTIONS(3339), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + [50480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(3345), 1, anon_sym_LBRACK, - ACTIONS(3020), 6, + ACTIONS(3343), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [44508] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + [50496] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1269), 1, + sym_string_literal, + STATE(1494), 1, + sym_concatenated_string, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [50513] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + anon_sym_RPAREN, + STATE(1342), 1, + sym_parameter_list, + STATE(1314), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [50536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, anon_sym_LBRACK, - ACTIONS(3024), 6, + ACTIONS(3349), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [44523] = 3, + [50551] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3237), 1, + anon_sym_LBRACK, + ACTIONS(3353), 1, + anon_sym_RPAREN, + STATE(1358), 1, + sym_parameter_list, + STATE(1338), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [50574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(3357), 1, anon_sym_LBRACK, - ACTIONS(3028), 6, + ACTIONS(3355), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [44538] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1102), 1, - sym_string_literal, - STATE(1257), 1, - sym_concatenated_string, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [44555] = 3, + [50589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3361), 1, anon_sym_LBRACK, - ACTIONS(3032), 6, + ACTIONS(3359), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [44570] = 4, + [50604] = 4, ACTIONS(3), 1, sym_comment, - STATE(1100), 1, + STATE(1266), 1, sym_string_literal, - STATE(1243), 1, + STATE(1430), 1, sym_concatenated_string, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -85627,160 +102734,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [44587] = 3, + [50621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(3365), 1, anon_sym_LBRACK, - ACTIONS(3036), 6, + ACTIONS(3363), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [44602] = 3, + [50636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 1, + ACTIONS(3369), 1, anon_sym_LBRACK, - ACTIONS(3040), 6, + ACTIONS(3367), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [44617] = 3, + [50651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3373), 1, anon_sym_LBRACK, - ACTIONS(3044), 6, + ACTIONS(3371), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [44632] = 3, + [50666] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, - anon_sym_LBRACK, - ACTIONS(3048), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - [44646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3052), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - STATE(1177), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3054), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [44662] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1416), 1, - sym_string_literal, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [44676] = 3, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3375), 1, + anon_sym_RPAREN, + STATE(1275), 1, + sym_parameter_list, + STATE(1288), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [50689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3379), 1, anon_sym_LBRACK, - ACTIONS(3057), 5, + ACTIONS(3377), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44690] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 1, - anon_sym_LPAREN2, - STATE(1189), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3063), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [44706] = 3, + anon_sym_COLON, + [50704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3383), 1, anon_sym_LBRACK, - ACTIONS(3065), 5, + ACTIONS(3381), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44720] = 5, + anon_sym_COLON, + [50719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(3071), 1, + ACTIONS(3387), 1, anon_sym_LBRACK, - STATE(1200), 1, + STATE(1384), 1, sym_parameter_list, - ACTIONS(3069), 3, + ACTIONS(3385), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44738] = 3, + [50737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3387), 1, anon_sym_LBRACK, - ACTIONS(3073), 5, + STATE(1384), 1, + sym_parameter_list, + ACTIONS(3389), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [44752] = 3, + anon_sym_COLON, + [50755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(3393), 1, anon_sym_LBRACK, - ACTIONS(3077), 5, + ACTIONS(3391), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44766] = 3, + [50769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 1, + ACTIONS(3397), 1, anon_sym_LBRACK, - ACTIONS(3081), 5, + ACTIONS(3395), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44780] = 3, + [50783] = 3, ACTIONS(3), 1, sym_comment, - STATE(1303), 1, + STATE(1727), 1, sym_string_literal, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -85788,72 +102869,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [44794] = 5, + [50797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_LBRACK, + ACTIONS(3399), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [50811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(3071), 1, + ACTIONS(3387), 1, anon_sym_LBRACK, - STATE(1200), 1, + STATE(1384), 1, sym_parameter_list, - ACTIONS(3085), 3, + ACTIONS(3403), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44812] = 3, + [50829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3387), 1, anon_sym_LBRACK, - ACTIONS(3087), 5, + STATE(1384), 1, + sym_parameter_list, + ACTIONS(3405), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [44826] = 4, + anon_sym_COLON, + [50847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3407), 1, anon_sym_LPAREN2, - STATE(1177), 2, + STATE(1372), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3063), 3, + ACTIONS(3409), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [44842] = 5, + [50863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3413), 1, + anon_sym_LBRACK, + ACTIONS(3411), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [50877] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_LBRACK, + ACTIONS(3418), 1, + anon_sym_EQ, + ACTIONS(3420), 1, + anon_sym_DOT, + STATE(1363), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [50895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_LBRACK, + ACTIONS(3423), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [50909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(3071), 1, + ACTIONS(3387), 1, anon_sym_LBRACK, - STATE(1200), 1, + STATE(1384), 1, sym_parameter_list, - ACTIONS(3093), 3, + ACTIONS(3427), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44860] = 5, + [50927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 1, + anon_sym_LBRACK, + ACTIONS(3429), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [50941] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1648), 1, + sym_string_literal, + ACTIONS(93), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [50955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3123), 1, anon_sym_LPAREN2, - ACTIONS(3071), 1, + ACTIONS(3387), 1, anon_sym_LBRACK, - STATE(1200), 1, + STATE(1384), 1, sym_parameter_list, - ACTIONS(3095), 3, + ACTIONS(3433), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [44878] = 3, + [50973] = 3, ACTIONS(3), 1, sym_comment, - STATE(1505), 1, + STATE(1420), 1, sym_string_literal, ACTIONS(93), 5, anon_sym_L_DQUOTE, @@ -85861,4099 +103012,4632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [44892] = 3, + [50987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3437), 1, anon_sym_LBRACK, - ACTIONS(3097), 5, + ACTIONS(3435), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [44906] = 5, + [51001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(3071), 1, + ACTIONS(3441), 1, anon_sym_LBRACK, - STATE(1200), 1, - sym_parameter_list, - ACTIONS(3101), 3, + ACTIONS(3439), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [44924] = 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [51015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3443), 1, + anon_sym_LPAREN2, + STATE(1374), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3409), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [51031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1751), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, + ACTIONS(3445), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3447), 1, anon_sym_DOT, - STATE(1197), 3, + STATE(1363), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [44942] = 5, + [51049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3449), 1, anon_sym_LPAREN2, - ACTIONS(3071), 1, - anon_sym_LBRACK, - STATE(1200), 1, - sym_parameter_list, - ACTIONS(3107), 3, + STATE(1374), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3451), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [51065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3454), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [44960] = 5, + [51076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 1, + ACTIONS(3456), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(3112), 1, - anon_sym_EQ, - ACTIONS(3114), 1, - anon_sym_DOT, - STATE(1197), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [44978] = 5, + anon_sym_COLON, + [51087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(3071), 1, - anon_sym_LBRACK, - STATE(1200), 1, - sym_parameter_list, - ACTIONS(2976), 2, + ACTIONS(3458), 5, anon_sym_COMMA, anon_sym_RPAREN, - [44995] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, anon_sym_LPAREN2, - ACTIONS(3119), 1, - anon_sym_COLON_COLON, - STATE(1357), 1, - sym_argument_list, - ACTIONS(3117), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [45012] = 2, + anon_sym_LBRACK, + anon_sym_COLON, + [51098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 5, + ACTIONS(3460), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45023] = 2, + [51109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 5, + ACTIONS(3462), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45034] = 2, + [51120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(3466), 1, + anon_sym_COLON_COLON, + STATE(1556), 1, + sym_argument_list, + ACTIONS(3464), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [51137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 5, + ACTIONS(3468), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45045] = 2, + [51148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3123), 1, anon_sym_LPAREN2, + ACTIONS(3387), 1, anon_sym_LBRACK, - anon_sym_COLON, - [45056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 5, + STATE(1384), 1, + sym_parameter_list, + ACTIONS(3331), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [45067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2415), 1, - anon_sym_LBRACE, - ACTIONS(3131), 1, - sym_identifier, - STATE(926), 1, - sym_field_declaration_list, - STATE(1290), 1, - sym_ms_declspec_modifier, - [45086] = 2, + [51165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 5, + ACTIONS(3470), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45097] = 2, + [51176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 5, + ACTIONS(3472), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45108] = 2, + [51187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 5, + ACTIONS(3474), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45119] = 2, + [51198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 5, + ACTIONS(3476), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45130] = 2, + [51209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 5, + ACTIONS(3478), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45141] = 2, + [51220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 5, + ACTIONS(3480), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [45152] = 6, + [51231] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2415), 1, + ACTIONS(2552), 1, anon_sym_LBRACE, - ACTIONS(3145), 1, + ACTIONS(3482), 1, sym_identifier, - STATE(929), 1, + STATE(1094), 1, sym_field_declaration_list, - STATE(1289), 1, + STATE(1446), 1, + sym_ms_declspec_modifier, + [51250] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2552), 1, + anon_sym_LBRACE, + ACTIONS(3484), 1, + sym_identifier, + STATE(1092), 1, + sym_field_declaration_list, + STATE(1486), 1, sym_ms_declspec_modifier, - [45171] = 2, + [51269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 5, + ACTIONS(3486), 1, anon_sym_COMMA, + STATE(1416), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3488), 2, anon_sym_RPAREN, + anon_sym_COLON, + [51283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, + STATE(1588), 1, + sym_argument_list, + ACTIONS(3490), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [51297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 1, + anon_sym_COMMA, + STATE(1397), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3494), 2, + anon_sym_RPAREN, anon_sym_COLON, - [45182] = 5, - ACTIONS(2605), 1, + [51311] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(3496), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3498), 1, aux_sym_string_literal_token1, - ACTIONS(3154), 1, + ACTIONS(3500), 1, sym_escape_sequence, - STATE(1214), 1, + STATE(1414), 1, aux_sym_string_literal_repeat1, - [45198] = 5, - ACTIONS(2605), 1, + [51327] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(3502), 1, anon_sym_DQUOTE, - ACTIONS(3159), 1, + ACTIONS(3504), 1, aux_sym_string_literal_token1, - ACTIONS(3161), 1, + ACTIONS(3506), 1, sym_escape_sequence, - STATE(1214), 1, + STATE(1394), 1, aux_sym_string_literal_repeat1, - [45214] = 4, + [51343] = 5, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3508), 1, + anon_sym_LF, + ACTIONS(3510), 1, + anon_sym_LPAREN, + ACTIONS(3512), 1, + sym_preproc_arg, + STATE(1590), 1, + sym_preproc_params, + [51359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3514), 1, anon_sym_COMMA, - STATE(1223), 1, + STATE(1397), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3165), 2, + ACTIONS(3517), 2, anon_sym_RPAREN, anon_sym_COLON, - [45228] = 5, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3159), 1, - aux_sym_string_literal_token1, - ACTIONS(3161), 1, - sym_escape_sequence, - ACTIONS(3167), 1, - anon_sym_DQUOTE, - STATE(1214), 1, - aux_sym_string_literal_repeat1, - [45244] = 4, + [51373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(3519), 1, anon_sym_COMMA, - STATE(1218), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3172), 2, + STATE(1399), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3521), 2, anon_sym_RPAREN, anon_sym_COLON, - [45258] = 4, + [51387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, + ACTIONS(3519), 1, anon_sym_COMMA, - STATE(1232), 1, + STATE(1404), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3176), 2, + ACTIONS(3523), 2, anon_sym_RPAREN, anon_sym_COLON, - [45272] = 2, + [51401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [45282] = 4, + ACTIONS(3486), 1, + anon_sym_COMMA, + STATE(1391), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3525), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [51415] = 5, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_LF, + ACTIONS(3529), 1, + sym_preproc_arg, + STATE(1548), 1, + sym_preproc_params, + [51431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, + ACTIONS(3531), 1, + sym_identifier, + ACTIONS(3533), 1, anon_sym_COMMA, - STATE(1233), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3182), 2, + ACTIONS(3535), 1, + anon_sym_RBRACE, + STATE(1501), 1, + sym_enumerator, + [51447] = 5, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_LF, + ACTIONS(3539), 1, + sym_preproc_arg, + STATE(1540), 1, + sym_preproc_params, + [51463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_COMMA, + STATE(1404), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3544), 2, anon_sym_RPAREN, anon_sym_COLON, - [45296] = 5, - ACTIONS(2605), 1, + [51477] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3184), 1, + ACTIONS(3546), 1, anon_sym_DQUOTE, - ACTIONS(3186), 1, + ACTIONS(3548), 1, aux_sym_string_literal_token1, - ACTIONS(3188), 1, + ACTIONS(3550), 1, sym_escape_sequence, - STATE(1234), 1, + STATE(1417), 1, aux_sym_string_literal_repeat1, - [45312] = 4, + [51493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3492), 1, anon_sym_COMMA, - STATE(1218), 1, + STATE(1393), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3190), 2, + ACTIONS(3552), 2, anon_sym_RPAREN, anon_sym_COLON, - [45326] = 5, - ACTIONS(2605), 1, + [51507] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3192), 1, - anon_sym_LF, - ACTIONS(3194), 1, + ACTIONS(3498), 1, + aux_sym_string_literal_token1, + ACTIONS(3500), 1, + sym_escape_sequence, + ACTIONS(3554), 1, + anon_sym_DQUOTE, + STATE(1414), 1, + aux_sym_string_literal_repeat1, + [51523] = 5, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3510), 1, anon_sym_LPAREN, - ACTIONS(3196), 1, + ACTIONS(3556), 1, + anon_sym_LF, + ACTIONS(3558), 1, sym_preproc_arg, - STATE(1405), 1, + STATE(1599), 1, sym_preproc_params, - [45342] = 5, - ACTIONS(2605), 1, + [51539] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3194), 1, + ACTIONS(3510), 1, anon_sym_LPAREN, - ACTIONS(3198), 1, + ACTIONS(3560), 1, anon_sym_LF, - ACTIONS(3200), 1, + ACTIONS(3562), 1, sym_preproc_arg, - STATE(1402), 1, + STATE(1593), 1, sym_preproc_params, - [45358] = 5, - ACTIONS(2605), 1, + [51555] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3194), 1, + ACTIONS(3510), 1, anon_sym_LPAREN, - ACTIONS(3202), 1, + ACTIONS(3564), 1, anon_sym_LF, - ACTIONS(3204), 1, + ACTIONS(3566), 1, sym_preproc_arg, - STATE(1381), 1, + STATE(1606), 1, sym_preproc_params, - [45374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_COMMA, - STATE(1227), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3209), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [45388] = 5, - ACTIONS(2605), 1, + [51571] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3194), 1, + ACTIONS(3510), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3568), 1, anon_sym_LF, - ACTIONS(3213), 1, + ACTIONS(3570), 1, sym_preproc_arg, - STATE(1345), 1, + STATE(1602), 1, sym_preproc_params, - [45404] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - anon_sym_LPAREN2, - ACTIONS(3071), 1, - anon_sym_LBRACK, - ACTIONS(3215), 1, - anon_sym_RPAREN, - STATE(1200), 1, - sym_parameter_list, - [45420] = 5, - ACTIONS(2605), 1, + [51587] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3194), 1, + ACTIONS(3510), 1, anon_sym_LPAREN, - ACTIONS(3217), 1, + ACTIONS(3572), 1, anon_sym_LF, - ACTIONS(3219), 1, + ACTIONS(3574), 1, sym_preproc_arg, - STATE(1342), 1, + STATE(1576), 1, sym_preproc_params, - [45436] = 5, - ACTIONS(2605), 1, + [51603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [51613] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3578), 1, anon_sym_DQUOTE, - ACTIONS(3223), 1, + ACTIONS(3580), 1, aux_sym_string_literal_token1, - ACTIONS(3225), 1, + ACTIONS(3583), 1, sym_escape_sequence, - STATE(1215), 1, + STATE(1414), 1, aux_sym_string_literal_repeat1, - [45452] = 4, + [51629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym_COMMA, - STATE(1227), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3227), 2, + ACTIONS(3123), 1, + anon_sym_LPAREN2, + ACTIONS(3387), 1, + anon_sym_LBRACK, + ACTIONS(3586), 1, anon_sym_RPAREN, - anon_sym_COLON, - [45466] = 4, + STATE(1384), 1, + sym_parameter_list, + [51645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 1, + ACTIONS(3588), 1, anon_sym_COMMA, - STATE(1233), 1, + STATE(1416), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3232), 2, + ACTIONS(3591), 2, anon_sym_RPAREN, anon_sym_COLON, - [45480] = 5, - ACTIONS(2605), 1, + [51659] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3498), 1, aux_sym_string_literal_token1, - ACTIONS(3161), 1, + ACTIONS(3500), 1, sym_escape_sequence, - ACTIONS(3234), 1, + ACTIONS(3593), 1, anon_sym_DQUOTE, - STATE(1214), 1, + STATE(1414), 1, aux_sym_string_literal_repeat1, - [45496] = 5, - ACTIONS(2605), 1, + [51675] = 5, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3194), 1, + ACTIONS(3510), 1, anon_sym_LPAREN, - ACTIONS(3236), 1, + ACTIONS(3595), 1, anon_sym_LF, - ACTIONS(3238), 1, + ACTIONS(3597), 1, sym_preproc_arg, - STATE(1400), 1, + STATE(1552), 1, sym_preproc_params, - [45512] = 4, + [51691] = 5, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3599), 1, + anon_sym_DQUOTE, + ACTIONS(3601), 1, + aux_sym_string_literal_token1, + ACTIONS(3603), 1, + sym_escape_sequence, + STATE(1407), 1, + aux_sym_string_literal_repeat1, + [51707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, + ACTIONS(3605), 3, anon_sym_COMMA, - STATE(1221), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3240), 2, anon_sym_RPAREN, anon_sym_COLON, - [45526] = 5, - ACTIONS(2605), 1, + [51716] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 1, - anon_sym_DQUOTE, - ACTIONS(3244), 1, - aux_sym_string_literal_token1, - ACTIONS(3246), 1, - sym_escape_sequence, - STATE(1217), 1, - aux_sym_string_literal_repeat1, - [45542] = 4, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3607), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [51729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - STATE(1372), 1, - sym_argument_list, - ACTIONS(3248), 2, + ACTIONS(3609), 1, anon_sym_COMMA, + ACTIONS(3611), 1, anon_sym_RBRACK_RBRACK, - [45556] = 5, - ACTIONS(2605), 1, + STATE(1511), 1, + aux_sym_attribute_declaration_repeat1, + [51742] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3194), 1, - anon_sym_LPAREN, - ACTIONS(3250), 1, - anon_sym_LF, - ACTIONS(3252), 1, - sym_preproc_arg, - STATE(1354), 1, - sym_preproc_params, - [45572] = 5, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3613), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [51755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 1, - sym_identifier, - ACTIONS(3256), 1, + ACTIONS(3615), 1, + anon_sym_COMMA, + ACTIONS(3618), 1, + anon_sym_RBRACK_RBRACK, + STATE(1424), 1, + aux_sym_attribute_declaration_repeat1, + [51768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3258), 1, + ACTIONS(3620), 1, + anon_sym_SEMI, + STATE(1436), 1, + aux_sym_declaration_repeat1, + [51781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + sym_identifier, + ACTIONS(3622), 1, anon_sym_RBRACE, - STATE(1296), 1, + STATE(1589), 1, sym_enumerator, - [45588] = 4, + [51794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(3622), 1, + anon_sym_RBRACE, + ACTIONS(3624), 1, anon_sym_COMMA, - ACTIONS(2173), 1, - anon_sym_RPAREN, - STATE(1259), 1, - aux_sym_argument_list_repeat1, - [45601] = 4, + STATE(1458), 1, + aux_sym_enumerator_list_repeat1, + [51807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 1, - anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_RBRACE, - STATE(1313), 1, - aux_sym_initializer_list_repeat1, - [45614] = 4, + ACTIONS(3626), 1, + anon_sym_RPAREN, + ACTIONS(3628), 1, + anon_sym_COLON, + STATE(1472), 1, + sym_gnu_asm_input_operand_list, + [51820] = 4, + ACTIONS(2920), 1, + anon_sym_LPAREN2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LF, + STATE(1205), 1, + sym_preproc_argument_list, + [51833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(3185), 1, anon_sym_RPAREN, - ACTIONS(2864), 1, + ACTIONS(3187), 1, anon_sym_COLON, - STATE(1258), 1, + STATE(1474), 1, sym_gnu_asm_output_operand_list, - [45627] = 4, + [51846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3632), 1, anon_sym_COMMA, - ACTIONS(3260), 1, + ACTIONS(3635), 1, anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [45640] = 4, + STATE(1431), 1, + aux_sym_declaration_repeat1, + [51859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - sym_identifier, - STATE(918), 1, - sym_enumerator_list, - [45653] = 4, + ACTIONS(3609), 1, + anon_sym_COMMA, + ACTIONS(3637), 1, + anon_sym_RBRACK_RBRACK, + STATE(1424), 1, + aux_sym_attribute_declaration_repeat1, + [51872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 1, + anon_sym_COMMA, + ACTIONS(3639), 1, + anon_sym_RPAREN, + STATE(1477), 1, + aux_sym_argument_list_repeat1, + [51885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2874), 1, + anon_sym_COMMA, + ACTIONS(3641), 1, + anon_sym_RPAREN, + STATE(1478), 1, + aux_sym_preproc_argument_list_repeat1, + [51898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3264), 1, + ACTIONS(3643), 1, anon_sym_SEMI, - STATE(1299), 1, - aux_sym_field_declaration_repeat1, - [45666] = 4, + STATE(1431), 1, + aux_sym_declaration_repeat1, + [51911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3266), 1, + ACTIONS(3645), 1, anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [45679] = 4, + STATE(1431), 1, + aux_sym_declaration_repeat1, + [51924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, - anon_sym_RBRACE, - ACTIONS(3268), 1, + ACTIONS(3647), 1, anon_sym_COMMA, - STATE(1248), 1, - aux_sym_initializer_list_repeat1, - [45692] = 4, + ACTIONS(3649), 1, + anon_sym_RPAREN, + STATE(1506), 1, + aux_sym_preproc_params_repeat1, + [51937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3651), 1, anon_sym_COMMA, - ACTIONS(3271), 1, + ACTIONS(3653), 1, + anon_sym_RPAREN, + STATE(1488), 1, + aux_sym_parameter_list_repeat1, + [51950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3655), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1451), 1, aux_sym_type_definition_repeat2, - [45705] = 4, + [51963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2572), 1, + anon_sym_LBRACE, + ACTIONS(3657), 1, + sym_identifier, + STATE(1088), 1, + sym_enumerator_list, + [51976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2518), 1, anon_sym_COMMA, - ACTIONS(3273), 1, + ACTIONS(2520), 1, + anon_sym_RBRACE, + STATE(1504), 1, + aux_sym_initializer_list_repeat1, + [51989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3659), 1, anon_sym_SEMI, - STATE(1299), 1, + STATE(1521), 1, aux_sym_field_declaration_repeat1, - [45718] = 4, + [52002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(3275), 1, - anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [45731] = 2, + ACTIONS(3661), 1, + anon_sym_RPAREN, + STATE(1477), 1, + aux_sym_argument_list_repeat1, + [52015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2874), 1, + anon_sym_COMMA, + ACTIONS(3663), 1, + anon_sym_RPAREN, + STATE(1478), 1, + aux_sym_preproc_argument_list_repeat1, + [52028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 3, + ACTIONS(3665), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [45740] = 4, - ACTIONS(2603), 1, - anon_sym_LPAREN2, - ACTIONS(2605), 1, + [52037] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, - anon_sym_LF, - STATE(1024), 1, - sym_preproc_argument_list, - [45753] = 4, + ACTIONS(2552), 1, + anon_sym_LBRACE, + ACTIONS(3667), 1, + sym_identifier, + STATE(1081), 1, + sym_field_declaration_list, + [52050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3281), 1, + ACTIONS(3669), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1451), 1, aux_sym_type_definition_repeat2, - [45766] = 4, + [52063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3283), 1, + ACTIONS(3671), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1451), 1, aux_sym_type_definition_repeat2, - [45779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3285), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [45788] = 4, + [52076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_COLON, - ACTIONS(2868), 1, + ACTIONS(3673), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1319), 1, - sym_gnu_asm_output_operand_list, - [45801] = 4, + anon_sym_COLON, + [52085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, + ACTIONS(3675), 1, + anon_sym_COMMA, + ACTIONS(3678), 1, anon_sym_RPAREN, - ACTIONS(3289), 1, - anon_sym_COLON, - STATE(1306), 1, - sym_gnu_asm_input_operand_list, - [45814] = 4, + STATE(1450), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [52098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(3680), 1, anon_sym_COMMA, - ACTIONS(3291), 1, - anon_sym_RPAREN, - STATE(1333), 1, - aux_sym_argument_list_repeat1, - [45827] = 4, + ACTIONS(3683), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3685), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1451), 1, aux_sym_type_definition_repeat2, - [45840] = 2, + [52124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [45849] = 4, - ACTIONS(2603), 1, - anon_sym_LPAREN2, - ACTIONS(2605), 1, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3687), 1, + anon_sym_SEMI, + STATE(1466), 1, + aux_sym_field_declaration_repeat1, + [52137] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_LF, - STATE(1024), 1, - sym_preproc_argument_list, - [45862] = 4, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3689), 1, + anon_sym_SEMI, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [52150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3691), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + sym_identifier, + ACTIONS(3693), 1, + anon_sym_RBRACE, + STATE(1589), 1, + sym_enumerator, + [52176] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_COMMA, + ACTIONS(3697), 1, anon_sym_RPAREN, - ACTIONS(3301), 1, - anon_sym_COLON, - STATE(1305), 1, - sym_gnu_asm_clobber_list, - [45875] = 4, + STATE(1450), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [52189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3699), 1, anon_sym_COMMA, - ACTIONS(3303), 1, - anon_sym_SEMI, - STATE(1270), 1, - aux_sym_declaration_repeat1, - [45888] = 4, + ACTIONS(3702), 1, + anon_sym_RBRACE, + STATE(1458), 1, + aux_sym_enumerator_list_repeat1, + [52202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(3305), 1, + ACTIONS(3704), 1, anon_sym_SEMI, - STATE(1246), 1, + STATE(1524), 1, aux_sym_field_declaration_repeat1, - [45901] = 4, + [52215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3307), 1, + ACTIONS(3706), 1, anon_sym_SEMI, - STATE(1299), 1, - aux_sym_field_declaration_repeat1, - [45914] = 4, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3651), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_RPAREN, - ACTIONS(3311), 1, - anon_sym_COLON, - STATE(1480), 1, - sym_gnu_asm_goto_list, - [45927] = 4, + STATE(1438), 1, + aux_sym_parameter_list_repeat1, + [52241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3710), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(3647), 1, anon_sym_COMMA, - ACTIONS(3313), 1, + ACTIONS(3712), 1, anon_sym_RPAREN, - STATE(1333), 1, - aux_sym_argument_list_repeat1, - [45940] = 4, + STATE(1437), 1, + aux_sym_preproc_params_repeat1, + [52267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3714), 3, anon_sym_COMMA, - ACTIONS(3317), 1, - anon_sym_RBRACK_RBRACK, - STATE(1330), 1, - aux_sym_attribute_declaration_repeat1, - [45953] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [52276] = 4, + ACTIONS(2920), 1, + anon_sym_LPAREN2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3716), 1, + anon_sym_LF, + STATE(1205), 1, + sym_preproc_argument_list, + [52289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(3718), 1, anon_sym_SEMI, - STATE(1270), 1, - aux_sym_declaration_repeat1, - [45966] = 4, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [52302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RBRACE, - STATE(1276), 1, - aux_sym_enumerator_list_repeat1, - [45979] = 4, + ACTIONS(2526), 1, + anon_sym_RPAREN, + STATE(1433), 1, + aux_sym_argument_list_repeat1, + [52315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(3720), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1431), 1, aux_sym_declaration_repeat1, - [45992] = 4, + [52328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 1, - sym_identifier, - ACTIONS(3326), 1, - anon_sym_RBRACE, - STATE(1379), 1, - sym_enumerator, - [46005] = 4, + ACTIONS(3233), 1, + anon_sym_COMMA, + ACTIONS(3722), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3330), 1, + ACTIONS(3724), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1431), 1, aux_sym_declaration_repeat1, - [46018] = 4, + [52354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3726), 1, anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACK_RBRACK, - STATE(1300), 1, - aux_sym_attribute_declaration_repeat1, - [46031] = 4, + ACTIONS(3729), 1, + anon_sym_RPAREN, + STATE(1471), 1, + aux_sym_generic_expression_repeat1, + [52367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - ACTIONS(3337), 1, - anon_sym_RBRACE, - STATE(1276), 1, - aux_sym_enumerator_list_repeat1, - [46044] = 4, + ACTIONS(3731), 1, + anon_sym_RPAREN, + ACTIONS(3733), 1, + anon_sym_COLON, + STATE(1473), 1, + sym_gnu_asm_clobber_list, + [52380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_RPAREN, + ACTIONS(3737), 1, + anon_sym_COLON, + STATE(1839), 1, + sym_gnu_asm_goto_list, + [52393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3628), 1, + anon_sym_COLON, + ACTIONS(3739), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym_gnu_asm_input_operand_list, + [52406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(3741), 1, anon_sym_RBRACK_RBRACK, - STATE(1277), 1, + STATE(1432), 1, aux_sym_attribute_declaration_repeat1, - [46057] = 4, + [52419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3344), 1, + ACTIONS(3743), 1, anon_sym_SEMI, - STATE(1270), 1, - aux_sym_declaration_repeat1, - [46070] = 2, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 3, - anon_sym_COMMA, + ACTIONS(2660), 1, anon_sym_RPAREN, - anon_sym_COLON, - [46079] = 4, + ACTIONS(3745), 1, + anon_sym_COMMA, + STATE(1477), 1, + aux_sym_argument_list_repeat1, + [52445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 1, - anon_sym_COMMA, - ACTIONS(3348), 1, + ACTIONS(2958), 1, anon_sym_RPAREN, - STATE(1341), 1, + ACTIONS(3748), 1, + anon_sym_COMMA, + STATE(1478), 1, aux_sym_preproc_argument_list_repeat1, - [46092] = 4, + [52458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 1, - sym_identifier, - ACTIONS(3350), 1, - anon_sym_RBRACE, - STATE(1379), 1, - sym_enumerator, - [46105] = 2, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3751), 1, + anon_sym_SEMI, + STATE(1485), 1, + aux_sym_field_declaration_repeat1, + [52471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 3, + ACTIONS(3233), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [46114] = 2, + ACTIONS(3753), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 3, + ACTIONS(3147), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [46123] = 4, + ACTIONS(3755), 1, + anon_sym_SEMI, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [52497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3695), 1, anon_sym_COMMA, - ACTIONS(3359), 1, + ACTIONS(3757), 1, anon_sym_RPAREN, - STATE(1284), 1, + STATE(1457), 1, aux_sym_gnu_asm_goto_list_repeat1, - [46136] = 4, + [52510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3361), 1, - anon_sym_SEMI, - STATE(1272), 1, - aux_sym_declaration_repeat1, - [46149] = 4, - ACTIONS(2603), 1, - anon_sym_LPAREN2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3363), 1, - anon_sym_LF, - STATE(1024), 1, - sym_preproc_argument_list, - [46162] = 4, + ACTIONS(3759), 1, + anon_sym_SEMI, + STATE(1431), 1, + aux_sym_declaration_repeat1, + [52523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3365), 1, - anon_sym_RPAREN, - STATE(1335), 1, - aux_sym_generic_expression_repeat1, - [46175] = 4, + ACTIONS(3761), 1, + anon_sym_SEMI, + STATE(1431), 1, + aux_sym_declaration_repeat1, + [52536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(3367), 1, - anon_sym_RPAREN, - STATE(1341), 1, - aux_sym_preproc_argument_list_repeat1, - [46188] = 4, + ACTIONS(3763), 1, + anon_sym_SEMI, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [52549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(2552), 1, anon_sym_LBRACE, - ACTIONS(3369), 1, + ACTIONS(3765), 1, sym_identifier, - STATE(917), 1, + STATE(1077), 1, sym_field_declaration_list, - [46201] = 4, + [52562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - anon_sym_LBRACE, - ACTIONS(3371), 1, - sym_identifier, - STATE(931), 1, - sym_field_declaration_list, - [46214] = 4, + ACTIONS(3121), 1, + anon_sym_COMMA, + ACTIONS(3767), 1, + anon_sym_SEMI, + STATE(1516), 1, + aux_sym_declaration_repeat1, + [52575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3769), 1, anon_sym_COMMA, - ACTIONS(3375), 1, + ACTIONS(3772), 1, anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_preproc_params_repeat1, - [46227] = 4, + STATE(1488), 1, + aux_sym_parameter_list_repeat1, + [52588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3377), 1, - anon_sym_RBRACK_RBRACK, - STATE(1312), 1, - aux_sym_attribute_declaration_repeat1, - [46240] = 4, - ACTIONS(2603), 1, + ACTIONS(3774), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52601] = 4, + ACTIONS(2920), 1, anon_sym_LPAREN2, - ACTIONS(2605), 1, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(3776), 1, anon_sym_LF, - STATE(1024), 1, + STATE(1205), 1, sym_preproc_argument_list, - [46253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2423), 1, - anon_sym_LBRACE, - ACTIONS(3381), 1, - sym_identifier, - STATE(918), 1, - sym_enumerator_list, - [46266] = 4, + [52614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3383), 1, + ACTIONS(3778), 1, anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46279] = 4, + STATE(1468), 1, + aux_sym_declaration_repeat1, + [52627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3780), 3, anon_sym_COMMA, - ACTIONS(3387), 1, - anon_sym_RBRACE, - STATE(1271), 1, - aux_sym_enumerator_list_repeat1, - [46292] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [52636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_COMMA, - ACTIONS(3389), 1, + ACTIONS(3782), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [52645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3187), 1, + anon_sym_COLON, + ACTIONS(3189), 1, anon_sym_RPAREN, - STATE(1328), 1, - aux_sym_preproc_params_repeat1, - [46305] = 3, + STATE(1428), 1, + sym_gnu_asm_output_operand_list, + [52658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_EQ, - ACTIONS(3391), 2, + ACTIONS(3784), 3, anon_sym_COMMA, - anon_sym_RBRACE, - [46316] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [52667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3398), 1, + ACTIONS(3786), 1, anon_sym_SEMI, - STATE(1299), 1, - aux_sym_field_declaration_repeat1, - [46329] = 4, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3609), 1, anon_sym_COMMA, - ACTIONS(3400), 1, + ACTIONS(3788), 1, anon_sym_RBRACK_RBRACK, - STATE(1277), 1, + STATE(1510), 1, aux_sym_attribute_declaration_repeat1, - [46342] = 4, + [52693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3402), 1, + ACTIONS(2508), 1, anon_sym_COMMA, - ACTIONS(3404), 1, + ACTIONS(3790), 1, anon_sym_RPAREN, - STATE(1284), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [46355] = 4, + STATE(1471), 1, + aux_sym_generic_expression_repeat1, + [52706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(3406), 1, + ACTIONS(3792), 1, anon_sym_SEMI, - STATE(1299), 1, + STATE(1522), 1, aux_sym_field_declaration_repeat1, - [46368] = 2, + [52719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 3, + ACTIONS(3147), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [46377] = 4, + ACTIONS(3794), 1, + anon_sym_SEMI, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [52732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3796), 1, anon_sym_COMMA, - ACTIONS(3410), 1, - anon_sym_SEMI, - STATE(1317), 1, - aux_sym_declaration_repeat1, - [46390] = 4, + ACTIONS(3798), 1, + anon_sym_RBRACE, + STATE(1427), 1, + aux_sym_enumerator_list_repeat1, + [52745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3737), 1, anon_sym_COLON, - ACTIONS(3412), 1, + ACTIONS(3800), 1, anon_sym_RPAREN, - STATE(1485), 1, + STATE(1620), 1, sym_gnu_asm_goto_list, - [46403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 1, - anon_sym_COLON, - ACTIONS(3414), 1, - anon_sym_RPAREN, - STATE(1267), 1, - sym_gnu_asm_clobber_list, - [46416] = 4, + [52758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3416), 1, + ACTIONS(3802), 1, anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46429] = 4, + STATE(1514), 1, + aux_sym_declaration_repeat1, + [52771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(1755), 1, + anon_sym_RBRACE, + ACTIONS(3804), 1, anon_sym_COMMA, - ACTIONS(3418), 1, - anon_sym_SEMI, - STATE(1326), 1, - aux_sym_declaration_repeat1, - [46442] = 4, + STATE(1528), 1, + aux_sym_initializer_list_repeat1, + [52784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3733), 1, + anon_sym_COLON, + ACTIONS(3806), 1, + anon_sym_RPAREN, + STATE(1502), 1, + sym_gnu_asm_clobber_list, + [52797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3420), 1, - anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46455] = 4, + ACTIONS(3811), 1, + anon_sym_RPAREN, + STATE(1506), 1, + aux_sym_preproc_params_repeat1, + [52810] = 4, + ACTIONS(2920), 1, + anon_sym_LPAREN2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3813), 1, + anon_sym_LF, + STATE(1205), 1, + sym_preproc_argument_list, + [52823] = 4, + ACTIONS(2920), 1, + anon_sym_LPAREN2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3815), 1, + anon_sym_LF, + STATE(1205), 1, + sym_preproc_argument_list, + [52836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3819), 1, + anon_sym_EQ, + ACTIONS(3817), 2, anon_sym_COMMA, - ACTIONS(3422), 1, - anon_sym_SEMI, - STATE(1299), 1, - aux_sym_field_declaration_repeat1, - [46468] = 4, + anon_sym_RBRACE, + [52847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3402), 1, + ACTIONS(3609), 1, anon_sym_COMMA, - ACTIONS(3424), 1, - anon_sym_RPAREN, - STATE(1301), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [46481] = 4, + ACTIONS(3821), 1, + anon_sym_RBRACK_RBRACK, + STATE(1424), 1, + aux_sym_attribute_declaration_repeat1, + [52860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3609), 1, anon_sym_COMMA, - ACTIONS(3426), 1, + ACTIONS(3823), 1, anon_sym_RBRACK_RBRACK, - STATE(1277), 1, + STATE(1424), 1, aux_sym_attribute_declaration_repeat1, - [46494] = 4, + [52873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - anon_sym_RBRACE, - ACTIONS(3428), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - STATE(1248), 1, - aux_sym_initializer_list_repeat1, - [46507] = 4, + ACTIONS(3825), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [52886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3432), 1, - anon_sym_RPAREN, - STATE(1318), 1, - aux_sym_parameter_list_repeat1, - [46520] = 4, + ACTIONS(3827), 1, + anon_sym_SEMI, + STATE(1431), 1, + aux_sym_declaration_repeat1, + [52899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3434), 1, + ACTIONS(3829), 1, anon_sym_SEMI, - STATE(1302), 1, - aux_sym_field_declaration_repeat1, - [46533] = 4, + STATE(1431), 1, + aux_sym_declaration_repeat1, + [52912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3436), 1, + ACTIONS(3831), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1431), 1, aux_sym_declaration_repeat1, - [46546] = 4, + [52925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3438), 1, + ACTIONS(3833), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1431), 1, aux_sym_declaration_repeat1, - [46559] = 4, + [52938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(3443), 1, + ACTIONS(2524), 1, anon_sym_RPAREN, - STATE(1318), 1, - aux_sym_parameter_list_repeat1, - [46572] = 4, + STATE(1443), 1, + aux_sym_argument_list_repeat1, + [52951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, - anon_sym_COLON, - ACTIONS(3445), 1, + ACTIONS(3835), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1263), 1, - sym_gnu_asm_input_operand_list, - [46585] = 4, + anon_sym_COLON, + [52960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3837), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [52969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3447), 1, + ACTIONS(3839), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1451), 1, aux_sym_type_definition_repeat2, - [46598] = 4, + [52982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(3449), 1, + ACTIONS(3841), 1, anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46611] = 4, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [52995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3843), 1, anon_sym_SEMI, - STATE(1278), 1, - aux_sym_declaration_repeat1, - [46624] = 4, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [53008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3453), 1, + ACTIONS(3845), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1451), 1, aux_sym_type_definition_repeat2, - [46637] = 4, + [53021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(3847), 1, anon_sym_COMMA, - ACTIONS(3455), 1, + ACTIONS(3850), 1, anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46650] = 4, + STATE(1524), 1, + aux_sym_field_declaration_repeat1, + [53034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - anon_sym_COMMA, - ACTIONS(2167), 1, + ACTIONS(2572), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + sym_identifier, + STATE(1088), 1, + sym_enumerator_list, + [53047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, anon_sym_RPAREN, - STATE(1268), 1, - aux_sym_argument_list_repeat1, - [46663] = 4, + ACTIONS(3854), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [53058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3858), 1, anon_sym_SEMI, - STATE(1270), 1, - aux_sym_declaration_repeat1, - [46676] = 4, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [53071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_RBRACE, + ACTIONS(3860), 1, + anon_sym_COMMA, + STATE(1528), 1, + aux_sym_initializer_list_repeat1, + [53084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(3121), 1, anon_sym_COMMA, - ACTIONS(3459), 1, + ACTIONS(3863), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1483), 1, aux_sym_declaration_repeat1, - [46689] = 4, + [53097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3464), 1, - anon_sym_RPAREN, - STATE(1328), 1, - aux_sym_preproc_params_repeat1, - [46702] = 2, + ACTIONS(3865), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [53110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 3, + ACTIONS(3233), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [46711] = 4, + ACTIONS(3867), 1, + anon_sym_SEMI, + STATE(1451), 1, + aux_sym_type_definition_repeat2, + [53123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_COMMA, - ACTIONS(3468), 1, - anon_sym_RBRACK_RBRACK, - STATE(1277), 1, - aux_sym_attribute_declaration_repeat1, - [46724] = 4, + ACTIONS(3869), 1, + anon_sym_LPAREN2, + STATE(411), 1, + sym_parenthesized_expression, + [53133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, - anon_sym_COMMA, - ACTIONS(3470), 1, - anon_sym_RPAREN, - STATE(1314), 1, - aux_sym_parameter_list_repeat1, - [46737] = 3, + ACTIONS(3869), 1, + anon_sym_LPAREN2, + STATE(334), 1, + sym_parenthesized_expression, + [53143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, - anon_sym_RPAREN, - ACTIONS(3472), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(187), 1, + anon_sym_LBRACE, + STATE(160), 1, + sym_compound_statement, + [53153] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3871), 1, + anon_sym_LF, + ACTIONS(3873), 1, + sym_preproc_arg, + [53163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 1, sym_identifier, - [46748] = 4, + STATE(1497), 1, + sym_attribute, + [53173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_RPAREN, - ACTIONS(3476), 1, - anon_sym_COMMA, - STATE(1333), 1, - aux_sym_argument_list_repeat1, - [46761] = 4, + ACTIONS(3869), 1, + anon_sym_LPAREN2, + STATE(406), 1, + sym_parenthesized_expression, + [53183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_COMMA, - ACTIONS(3479), 1, - anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46774] = 4, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1545), 1, + sym_parenthesized_expression, + [53193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_COMMA, - ACTIONS(3484), 1, - anon_sym_RPAREN, - STATE(1335), 1, - aux_sym_generic_expression_repeat1, - [46787] = 2, + ACTIONS(3869), 1, + anon_sym_LPAREN2, + STATE(422), 1, + sym_parenthesized_expression, + [53203] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LF, + ACTIONS(3881), 1, + sym_preproc_arg, + [53213] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3883), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [53221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3486), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [46796] = 4, + ACTIONS(3885), 1, + sym_identifier, + ACTIONS(3887), 1, + anon_sym_LPAREN2, + [53231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_COMMA, - ACTIONS(3488), 1, - anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46809] = 4, + ACTIONS(3889), 1, + sym_identifier, + ACTIONS(3891), 1, + anon_sym_RPAREN, + [53241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3490), 1, - anon_sym_COMMA, - ACTIONS(3493), 1, - anon_sym_SEMI, - STATE(1338), 1, - aux_sym_type_definition_repeat2, - [46822] = 4, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + STATE(1768), 1, + sym_argument_list, + [53251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - anon_sym_COMMA, - ACTIONS(3495), 1, - anon_sym_SEMI, - STATE(1310), 1, - aux_sym_field_declaration_repeat1, - [46835] = 4, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(242), 1, + sym_compound_statement, + [53261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - anon_sym_COMMA, - ACTIONS(3497), 1, - anon_sym_SEMI, - STATE(1299), 1, - aux_sym_field_declaration_repeat1, - [46848] = 4, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + STATE(1740), 1, + sym_argument_list, + [53271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 1, - anon_sym_RPAREN, - ACTIONS(3499), 1, - anon_sym_COMMA, - STATE(1341), 1, - aux_sym_preproc_argument_list_repeat1, - [46861] = 3, - ACTIONS(2605), 1, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1619), 1, + sym_parenthesized_expression, + [53281] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3893), 1, anon_sym_LF, - ACTIONS(3504), 1, + ACTIONS(3895), 1, sym_preproc_arg, - [46871] = 2, + [53291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 2, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1586), 1, + sym_parenthesized_expression, + [53301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3897), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [46879] = 2, - ACTIONS(2605), 1, + anon_sym_SEMI, + [53309] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3506), 2, + ACTIONS(3899), 1, anon_sym_LF, + ACTIONS(3901), 1, sym_preproc_arg, - [46887] = 3, - ACTIONS(2605), 1, + [53319] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3903), 1, anon_sym_LF, - ACTIONS(3510), 1, + ACTIONS(3905), 1, sym_preproc_arg, - [46897] = 2, + [53329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 2, + ACTIONS(2534), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [46905] = 3, + anon_sym_RBRACE, + [53337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3869), 1, anon_sym_LPAREN2, - STATE(1384), 1, + STATE(343), 1, sym_parenthesized_expression, - [46915] = 2, + [53347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 2, + ACTIONS(2546), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [46923] = 3, + anon_sym_RBRACE, + [53355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - STATE(1411), 1, - sym_argument_list, - [46933] = 3, + ACTIONS(3907), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [53363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3877), 1, anon_sym_LPAREN2, - STATE(1537), 1, + STATE(1774), 1, sym_parenthesized_expression, - [46943] = 3, + [53373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3875), 1, sym_identifier, - STATE(1292), 1, + STATE(1574), 1, sym_attribute, - [46953] = 3, + [53383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3869), 1, anon_sym_LPAREN2, - STATE(1366), 1, + STATE(342), 1, sym_parenthesized_expression, - [46963] = 2, - ACTIONS(2605), 1, + [53393] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3516), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [46971] = 3, - ACTIONS(2605), 1, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1534), 1, + sym_parenthesized_expression, + [53403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1659), 1, + sym_parenthesized_expression, + [53413] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3909), 1, anon_sym_LF, - ACTIONS(3520), 1, + ACTIONS(3911), 1, sym_preproc_arg, - [46981] = 3, + [53423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3522), 1, - sym_identifier, - ACTIONS(3524), 1, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1673), 1, + sym_parenthesized_expression, + [53433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2516), 2, anon_sym_RPAREN, - [46991] = 2, + anon_sym_SEMI, + [53441] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3913), 2, + anon_sym_LF, + sym_preproc_arg, + [53449] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3915), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [53457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1571), 1, + sym_parenthesized_expression, + [53467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 1, + sym_identifier, + STATE(1475), 1, + sym_attribute, + [53477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 2, + ACTIONS(3917), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [46999] = 2, + anon_sym_RPAREN, + [53485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(458), 1, + anon_sym_LBRACE, + STATE(253), 1, + sym_compound_statement, + [53495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + anon_sym_LBRACE, + STATE(87), 1, + sym_compound_statement, + [53505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 2, + ACTIONS(3919), 1, + sym_identifier, + ACTIONS(3921), 1, + anon_sym_LPAREN2, + [53515] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3923), 1, + anon_sym_LF, + ACTIONS(3925), 1, + sym_preproc_arg, + [53525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3618), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [47007] = 3, + [53533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3869), 1, + anon_sym_LPAREN2, + STATE(410), 1, + sym_parenthesized_expression, + [53543] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3927), 1, + anon_sym_LF, + ACTIONS(3929), 1, + sym_preproc_arg, + [53553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3869), 1, + anon_sym_LPAREN2, + STATE(420), 1, + sym_parenthesized_expression, + [53563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [53571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2652), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [53579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3877), 1, + anon_sym_LPAREN2, + STATE(1808), 1, + sym_parenthesized_expression, + [53589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1382), 1, - sym_attribute, - [47017] = 3, + [53597] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3933), 2, + anon_sym_LF, + sym_preproc_arg, + [53605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3869), 1, + anon_sym_LPAREN2, + STATE(477), 1, + sym_parenthesized_expression, + [53615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, sym_identifier, - STATE(1379), 1, + STATE(1589), 1, sym_enumerator, - [47027] = 3, + [53625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(3869), 1, anon_sym_LPAREN2, - STATE(1511), 1, + STATE(333), 1, sym_parenthesized_expression, - [47037] = 2, + [53635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(642), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_compound_statement, + [53645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 2, + ACTIONS(3935), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47045] = 3, - ACTIONS(2605), 1, + [53653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [53661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3702), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53669] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3939), 1, + anon_sym_LF, + ACTIONS(3941), 1, + sym_preproc_arg, + [53679] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3943), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [53687] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3945), 1, anon_sym_LF, - ACTIONS(3532), 1, + ACTIONS(3947), 1, sym_preproc_arg, - [47055] = 3, - ACTIONS(2605), 1, + [53697] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3534), 1, + ACTIONS(3949), 1, anon_sym_LF, - ACTIONS(3536), 1, + ACTIONS(3951), 1, sym_preproc_arg, - [47065] = 2, - ACTIONS(2605), 1, + [53707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3772), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53715] = 3, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3953), 1, anon_sym_LF, + ACTIONS(3955), 1, sym_preproc_arg, - [47073] = 3, + [53725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, + ACTIONS(3877), 1, anon_sym_LPAREN2, - STATE(171), 1, + STATE(1570), 1, sym_parenthesized_expression, - [47083] = 3, + [53735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(121), 1, - anon_sym_LBRACE, - STATE(81), 1, - sym_compound_statement, - [47093] = 3, + ACTIONS(2660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53743] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3957), 1, + anon_sym_LF, + ACTIONS(3959), 1, + sym_preproc_arg, + [53753] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3961), 1, + anon_sym_LF, + ACTIONS(3963), 1, + sym_preproc_arg, + [53763] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3965), 1, + anon_sym_LF, + ACTIONS(3967), 1, + sym_preproc_arg, + [53773] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3969), 1, + anon_sym_LF, + ACTIONS(3971), 1, + sym_preproc_arg, + [53783] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3973), 1, + anon_sym_LF, + ACTIONS(3975), 1, + sym_preproc_arg, + [53793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, - anon_sym_LPAREN2, - STATE(169), 1, - sym_parenthesized_expression, - [47103] = 3, + ACTIONS(3875), 1, + sym_identifier, + STATE(1422), 1, + sym_attribute, + [53803] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3977), 2, + anon_sym_LF, + sym_preproc_arg, + [53811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, - anon_sym_LPAREN2, - STATE(1580), 1, - sym_parenthesized_expression, - [47113] = 3, + ACTIONS(3811), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53819] = 3, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_LF, + ACTIONS(3981), 1, + sym_preproc_arg, + [53829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 1, + anon_sym_RPAREN, + [53836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2576), 1, + anon_sym_RPAREN, + [53843] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3776), 1, + anon_sym_LF, + [53850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_SEMI, + [53857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3983), 1, + anon_sym_SEMI, + [53864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, - anon_sym_LPAREN2, - STATE(202), 1, - sym_parenthesized_expression, - [47123] = 2, - ACTIONS(2605), 1, + ACTIONS(3985), 1, + aux_sym_preproc_if_token2, + [53871] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3542), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [47131] = 3, + ACTIONS(3987), 1, + anon_sym_LF, + [53878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(248), 1, - sym_compound_statement, - [47141] = 2, + ACTIONS(3989), 1, + aux_sym_preproc_if_token2, + [53885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [47149] = 2, - ACTIONS(2605), 1, + ACTIONS(3991), 1, + aux_sym_preproc_if_token2, + [53892] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 2, - anon_sym_LF, - sym_preproc_arg, - [47157] = 2, + ACTIONS(3993), 1, + aux_sym_preproc_if_token2, + [53899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 2, - anon_sym_COMMA, + ACTIONS(3995), 1, anon_sym_SEMI, - [47165] = 3, + [53906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym_compound_statement, - [47175] = 2, + ACTIONS(3997), 1, + anon_sym_COLON, + [53913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 2, - anon_sym_COMMA, + ACTIONS(3999), 1, anon_sym_SEMI, - [47183] = 2, + [53920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3548), 2, - anon_sym_COMMA, + ACTIONS(4001), 1, anon_sym_RPAREN, - [47191] = 2, + [53927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47199] = 2, + ACTIONS(4003), 1, + aux_sym_preproc_if_token2, + [53934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47207] = 3, + ACTIONS(2682), 1, + anon_sym_RPAREN, + [53941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, - anon_sym_LPAREN2, - STATE(1375), 1, - sym_parenthesized_expression, - [47217] = 3, - ACTIONS(2605), 1, + ACTIONS(4005), 1, + aux_sym_preproc_if_token2, + [53948] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3550), 1, + ACTIONS(4007), 1, anon_sym_LF, - ACTIONS(3552), 1, - sym_preproc_arg, - [47227] = 2, + [53955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [47235] = 3, + ACTIONS(4009), 1, + aux_sym_preproc_if_token2, + [53962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(4011), 1, anon_sym_LPAREN2, - STATE(1513), 1, - sym_parenthesized_expression, - [47245] = 3, + [53969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_compound_statement, - [47255] = 3, + ACTIONS(2686), 1, + anon_sym_RPAREN, + [53976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, - anon_sym_LPAREN2, - STATE(173), 1, - sym_parenthesized_expression, - [47265] = 3, + ACTIONS(2594), 1, + anon_sym_RPAREN, + [53983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, - anon_sym_LPAREN2, - STATE(163), 1, - sym_parenthesized_expression, - [47275] = 3, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_LF, - ACTIONS(3556), 1, - sym_preproc_arg, - [47285] = 3, + ACTIONS(4013), 1, + sym_identifier, + [53990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_LPAREN2, - STATE(1479), 1, - sym_argument_list, - [47295] = 3, + ACTIONS(2694), 1, + anon_sym_RPAREN, + [53997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, - sym_identifier, - ACTIONS(3560), 1, - anon_sym_LPAREN2, - [47305] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3562), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [47313] = 3, + ACTIONS(4015), 1, + anon_sym_COLON, + [54004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, - anon_sym_LPAREN2, - STATE(170), 1, - sym_parenthesized_expression, - [47323] = 3, + ACTIONS(2680), 1, + anon_sym_RPAREN, + [54011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, - anon_sym_LPAREN2, - STATE(1371), 1, - sym_parenthesized_expression, - [47333] = 3, + ACTIONS(4017), 1, + anon_sym_RPAREN, + [54018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, - sym_identifier, - ACTIONS(3566), 1, - anon_sym_LPAREN2, - [47343] = 2, + ACTIONS(2678), 1, + anon_sym_RPAREN, + [54025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 2, - anon_sym_COMMA, + ACTIONS(2674), 1, anon_sym_SEMI, - [47351] = 3, + [54032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, - anon_sym_LPAREN2, - STATE(176), 1, - sym_parenthesized_expression, - [47361] = 2, + ACTIONS(2672), 1, + anon_sym_RPAREN, + [54039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [47369] = 2, + ACTIONS(2670), 1, + anon_sym_RPAREN, + [54046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47377] = 3, + ACTIONS(2668), 1, + anon_sym_RPAREN, + [54053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(2666), 1, + anon_sym_RPAREN, + [54060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4019), 1, sym_identifier, - STATE(1275), 1, - sym_attribute, - [47387] = 3, - ACTIONS(2605), 1, + [54067] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3572), 1, + ACTIONS(4021), 1, anon_sym_LF, - ACTIONS(3574), 1, - sym_preproc_arg, - [47397] = 3, - ACTIONS(2605), 1, + [54074] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(4023), 1, anon_sym_LF, - ACTIONS(3578), 1, - sym_preproc_arg, - [47407] = 3, - ACTIONS(2605), 1, + [54081] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(4025), 1, anon_sym_LF, - ACTIONS(3582), 1, - sym_preproc_arg, - [47417] = 3, - ACTIONS(2605), 1, + [54088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2692), 1, + anon_sym_RPAREN, + [54095] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(4027), 1, anon_sym_LF, - ACTIONS(3586), 1, - sym_preproc_arg, - [47427] = 3, - ACTIONS(2605), 1, + [54102] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(4029), 1, anon_sym_LF, - ACTIONS(3590), 1, - sym_preproc_arg, - [47437] = 3, + [54109] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(4031), 1, + anon_sym_LF, + [54116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, + ACTIONS(4033), 1, anon_sym_LPAREN2, - STATE(193), 1, - sym_parenthesized_expression, - [47447] = 3, - ACTIONS(2605), 1, + [54123] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3592), 1, + ACTIONS(4035), 1, anon_sym_LF, - ACTIONS(3594), 1, - sym_preproc_arg, - [47457] = 3, - ACTIONS(2605), 1, + [54130] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(4037), 1, anon_sym_LF, - ACTIONS(3598), 1, - sym_preproc_arg, - [47467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3514), 1, - sym_identifier, - STATE(1269), 1, - sym_attribute, - [47477] = 2, - ACTIONS(3), 1, + [54137] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2261), 1, - anon_sym_RPAREN, - [47484] = 2, + ACTIONS(4039), 1, + anon_sym_LF, + [54144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(4041), 1, aux_sym_preproc_if_token2, - [47491] = 2, - ACTIONS(2605), 1, + [54151] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(4043), 1, anon_sym_LF, - [47498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3604), 1, - anon_sym_STAR, - [47505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3606), 1, - aux_sym_preproc_if_token2, - [47512] = 2, - ACTIONS(3), 1, + [54158] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2291), 1, - anon_sym_SEMI, - [47519] = 2, - ACTIONS(2605), 1, + ACTIONS(4045), 1, + anon_sym_LF, + [54165] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(4047), 1, anon_sym_LF, - [47526] = 2, + [54172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(4049), 1, aux_sym_preproc_if_token2, - [47533] = 2, + [54179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, - anon_sym_LPAREN2, - [47540] = 2, + ACTIONS(4051), 1, + sym_identifier, + [54186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_RPAREN, - [47547] = 2, + ACTIONS(4053), 1, + sym_identifier, + [54193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - aux_sym_preproc_if_token2, - [47554] = 2, + ACTIONS(4055), 1, + anon_sym_SEMI, + [54200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, - anon_sym_RPAREN, - [47561] = 2, + ACTIONS(4057), 1, + aux_sym_preproc_if_token2, + [54207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 1, + ACTIONS(2690), 1, anon_sym_RPAREN, - [47568] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3279), 1, - anon_sym_LF, - [47575] = 2, + [54214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, - anon_sym_SEMI, - [47582] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3616), 1, - anon_sym_LF, - [47589] = 2, + ACTIONS(4059), 1, + sym_identifier, + [54221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(2586), 1, anon_sym_RPAREN, - [47596] = 2, + [54228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2275), 1, - anon_sym_RPAREN, - [47603] = 2, + ACTIONS(4061), 1, + sym_identifier, + [54235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(4063), 1, aux_sym_preproc_if_token2, - [47610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_RPAREN, - [47617] = 2, - ACTIONS(3), 1, + [54242] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(2263), 1, - anon_sym_SEMI, - [47624] = 2, + ACTIONS(4065), 1, + anon_sym_LF, + [54249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2688), 1, anon_sym_RPAREN, - [47631] = 2, + [54256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(4067), 1, anon_sym_RPAREN, - [47638] = 2, + [54263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 1, + ACTIONS(4069), 1, anon_sym_SEMI, - [47645] = 2, + [54270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 1, - anon_sym_RPAREN, - [47652] = 2, + ACTIONS(4071), 1, + aux_sym_preproc_if_token2, + [54277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, - anon_sym_SEMI, - [47659] = 2, + ACTIONS(4073), 1, + aux_sym_preproc_if_token2, + [54284] = 2, + ACTIONS(2106), 1, + anon_sym_LF, + ACTIONS(2922), 1, + sym_comment, + [54291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(4075), 1, anon_sym_SEMI, - [47666] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3628), 1, - anon_sym_LF, - [47673] = 2, - ACTIONS(2605), 1, + [54298] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, - anon_sym_LF, - [47680] = 2, - ACTIONS(2605), 1, + ACTIONS(4077), 1, + anon_sym_COLON, + [54305] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - anon_sym_LF, - [47687] = 2, - ACTIONS(2605), 1, + ACTIONS(4079), 1, + sym_identifier, + [54312] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(2520), 1, + anon_sym_RBRACE, + [54319] = 2, + ACTIONS(2102), 1, anon_sym_LF, - [47694] = 2, - ACTIONS(2605), 1, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3636), 1, - anon_sym_LF, - [47701] = 2, + [54326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - [47708] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LF, - [47715] = 2, - ACTIONS(2605), 1, + [54333] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, - anon_sym_LF, - [47722] = 2, + ACTIONS(4081), 1, + anon_sym_COLON, + [54340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(4083), 1, aux_sym_preproc_if_token2, - [47729] = 2, - ACTIONS(2605), 1, + [54347] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(4085), 1, anon_sym_LF, - [47736] = 2, + [54354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_SEMI, - [47743] = 2, + ACTIONS(4087), 1, + aux_sym_preproc_if_token2, + [54361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(4089), 1, aux_sym_preproc_if_token2, - [47750] = 2, - ACTIONS(2605), 1, + [54368] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 1, - anon_sym_LF, - [47757] = 2, - ACTIONS(2605), 1, + ACTIONS(4091), 1, + aux_sym_preproc_if_token2, + [54375] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, - anon_sym_LF, - [47764] = 2, - ACTIONS(2605), 1, + ACTIONS(4093), 1, + sym_identifier, + [54382] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3652), 1, + ACTIONS(4095), 1, anon_sym_LF, - [47771] = 2, - ACTIONS(2605), 1, + [54389] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(3815), 1, anon_sym_LF, - [47778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3656), 1, - anon_sym_COLON, - [47785] = 2, + [54396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, - sym_identifier, - [47792] = 2, + ACTIONS(2622), 1, + anon_sym_SEMI, + [54403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(4097), 1, sym_identifier, - [47799] = 2, + [54410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, - anon_sym_RPAREN, - [47806] = 2, + ACTIONS(4099), 1, + aux_sym_preproc_if_token2, + [54417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_COMMA, - [47813] = 2, + ACTIONS(4101), 1, + anon_sym_SEMI, + [54424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(4103), 1, anon_sym_RPAREN, - [47820] = 2, + [54431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(4105), 1, anon_sym_RPAREN, - [47827] = 2, + [54438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, - anon_sym_RPAREN, - [47834] = 2, + ACTIONS(4107), 1, + anon_sym_SEMI, + [54445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, - sym_identifier, - [47841] = 2, + ACTIONS(4109), 1, + aux_sym_preproc_if_token2, + [54452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_RPAREN, - [47848] = 2, + ACTIONS(4111), 1, + anon_sym_SEMI, + [54459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, + ACTIONS(2618), 1, anon_sym_SEMI, - [47855] = 2, + [54466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 1, + ACTIONS(2644), 1, anon_sym_SEMI, - [47862] = 2, - ACTIONS(1827), 1, - anon_sym_LF, - ACTIONS(2605), 1, + [54473] = 2, + ACTIONS(2922), 1, sym_comment, - [47869] = 2, + ACTIONS(3630), 1, + anon_sym_LF, + [54480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(2640), 1, anon_sym_SEMI, - [47876] = 2, + [54487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, - anon_sym_SEMI, - [47883] = 2, + ACTIONS(4113), 1, + sym_identifier, + [54494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, - anon_sym_RPAREN, - [47890] = 2, + ACTIONS(2638), 1, + anon_sym_SEMI, + [54501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, - anon_sym_COLON, - [47897] = 2, + ACTIONS(2634), 1, + anon_sym_SEMI, + [54508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, - sym_identifier, - [47904] = 2, - ACTIONS(3), 1, + ACTIONS(2632), 1, + anon_sym_SEMI, + [54515] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3682), 1, - sym_primitive_type, - [47911] = 2, + ACTIONS(4115), 1, + anon_sym_LF, + [54522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3684), 1, - anon_sym_COLON, - [47918] = 2, + ACTIONS(4117), 1, + anon_sym_STAR, + [54529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(4119), 1, aux_sym_preproc_if_token2, - [47925] = 2, + [54536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_RPAREN, - [47932] = 2, + ACTIONS(4121), 1, + anon_sym_SEMI, + [54543] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(4123), 1, + anon_sym_LF, + [54550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_RBRACE, - [47939] = 2, + ACTIONS(4125), 1, + anon_sym_COLON, + [54557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3688), 1, + ACTIONS(2608), 1, anon_sym_RPAREN, - [47946] = 2, + [54564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(4127), 1, anon_sym_SQUOTE, - [47953] = 2, - ACTIONS(3), 1, + [54571] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3692), 1, - aux_sym_preproc_if_token2, - [47960] = 2, + ACTIONS(4129), 1, + anon_sym_LF, + [54578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2331), 1, - anon_sym_RPAREN, - [47967] = 2, + ACTIONS(4131), 1, + anon_sym_SEMI, + [54585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, - sym_identifier, - [47974] = 2, + ACTIONS(2616), 1, + anon_sym_SEMI, + [54592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, + ACTIONS(2614), 1, anon_sym_RPAREN, - [47981] = 2, + [54599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, + ACTIONS(4133), 1, anon_sym_RPAREN, - [47988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3700), 1, - anon_sym_LPAREN2, - [47995] = 2, + [54606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3702), 1, - sym_identifier, - [48002] = 2, + ACTIONS(2598), 1, + anon_sym_RPAREN, + [54613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2596), 1, anon_sym_RPAREN, - [48009] = 2, + [54620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3704), 1, + ACTIONS(4135), 1, aux_sym_preproc_if_token2, - [48016] = 2, + [54627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_RPAREN, - [48023] = 2, + ACTIONS(4137), 1, + aux_sym_preproc_if_token2, + [54634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3708), 1, + ACTIONS(4139), 1, sym_identifier, - [48030] = 2, + [54641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, - aux_sym_preproc_if_token2, - [48037] = 2, + ACTIONS(4141), 1, + sym_identifier, + [54648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 1, - sym_identifier, - [48044] = 2, + ACTIONS(4143), 1, + aux_sym_preproc_if_token2, + [54655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, - anon_sym_STAR, - [48051] = 2, + ACTIONS(4145), 1, + aux_sym_preproc_if_token2, + [54662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(2590), 1, anon_sym_RPAREN, - [48058] = 2, + [54669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, - aux_sym_preproc_if_token2, - [48065] = 2, + ACTIONS(4147), 1, + anon_sym_LPAREN2, + [54676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3720), 1, - aux_sym_preproc_if_token2, - [48072] = 2, + ACTIONS(4149), 1, + anon_sym_RPAREN, + [54683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_COLON, - [48079] = 2, + ACTIONS(4151), 1, + sym_identifier, + [54690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(4153), 1, anon_sym_RBRACK, - [48086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2208), 1, - anon_sym_SEMI, - [48093] = 2, + [54697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(4155), 1, anon_sym_RPAREN, - [48100] = 2, + [54704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2676), 1, anon_sym_SEMI, - [48107] = 2, - ACTIONS(2605), 1, + [54711] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(4157), 1, anon_sym_LF, - [48114] = 2, + [54718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, - aux_sym_preproc_if_token2, - [48121] = 2, + ACTIONS(4159), 1, + anon_sym_SEMI, + [54725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, - aux_sym_preproc_if_token2, - [48128] = 2, + ACTIONS(2564), 1, + anon_sym_RPAREN, + [54732] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3716), 1, + anon_sym_LF, + [54739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(2600), 1, anon_sym_SEMI, - [48135] = 2, + [54746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, - aux_sym_preproc_if_token2, - [48142] = 2, + ACTIONS(4161), 1, + sym_identifier, + [54753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(4163), 1, sym_identifier, - [48149] = 2, + [54760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 1, - sym_identifier, - [48156] = 2, + ACTIONS(4165), 1, + anon_sym_STAR, + [54767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, - anon_sym_LPAREN2, - [48163] = 2, + ACTIONS(4167), 1, + anon_sym_RPAREN, + [54774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3740), 1, + ACTIONS(4169), 1, aux_sym_preproc_if_token2, - [48170] = 2, - ACTIONS(2605), 1, + [54781] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, - anon_sym_LF, - [48177] = 2, + ACTIONS(4171), 1, + anon_sym_SEMI, + [54788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 1, - aux_sym_preproc_if_token2, - [48184] = 2, + ACTIONS(4173), 1, + anon_sym_SEMI, + [54795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - aux_sym_preproc_if_token2, - [48191] = 2, + ACTIONS(2592), 1, + anon_sym_SEMI, + [54802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 1, - sym_identifier, - [48198] = 2, + ACTIONS(4175), 1, + anon_sym_COMMA, + [54809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(2588), 1, anon_sym_SEMI, - [48205] = 2, + [54816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(4177), 1, anon_sym_RPAREN, - [48212] = 2, + [54823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(2560), 1, anon_sym_SEMI, - [48219] = 2, + [54830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_STAR, - [48226] = 2, + ACTIONS(2558), 1, + anon_sym_SEMI, + [54837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3758), 1, - aux_sym_preproc_if_token2, - [48233] = 2, + ACTIONS(4179), 1, + sym_identifier, + [54844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3760), 1, - aux_sym_preproc_if_token2, - [48240] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LF, - [48247] = 2, + ACTIONS(4181), 1, + sym_identifier, + [54851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, - anon_sym_RBRACE, - [48254] = 2, + ACTIONS(4183), 1, + sym_identifier, + [54858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(4185), 1, sym_identifier, - [48261] = 2, + [54865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 1, - sym_identifier, - [48268] = 2, + ACTIONS(4187), 1, + aux_sym_preproc_if_token2, + [54872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, - anon_sym_RPAREN, - [48275] = 2, + ACTIONS(4189), 1, + sym_primitive_type, + [54879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_SQUOTE, - [48282] = 2, - ACTIONS(2605), 1, + ACTIONS(4191), 1, + sym_identifier, + [54886] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(4193), 1, anon_sym_LF, - [48289] = 2, + [54893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 1, - anon_sym_RPAREN, - [48296] = 2, + ACTIONS(4195), 1, + anon_sym_LPAREN2, + [54900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3776), 1, - aux_sym_preproc_if_token2, - [48303] = 2, + ACTIONS(3798), 1, + anon_sym_RBRACE, + [54907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - sym_identifier, - [48310] = 2, + ACTIONS(4197), 1, + anon_sym_RPAREN, + [54914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 1, - aux_sym_preproc_if_token2, - [48317] = 2, + ACTIONS(4199), 1, + anon_sym_COLON, + [54921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, - aux_sym_preproc_if_token2, - [48324] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_LF, - [48331] = 2, + ACTIONS(2562), 1, + anon_sym_RPAREN, + [54928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3786), 1, - aux_sym_preproc_if_token2, - [48338] = 2, + ACTIONS(4201), 1, + sym_identifier, + [54935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 1, - aux_sym_preproc_if_token2, - [48345] = 2, + ACTIONS(2664), 1, + anon_sym_RPAREN, + [54942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(4203), 1, aux_sym_preproc_if_token2, - [48352] = 2, + [54949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 1, + ACTIONS(4205), 1, sym_identifier, - [48359] = 2, + [54956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 1, + ACTIONS(4207), 1, anon_sym_RPAREN, - [48366] = 2, + [54963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - sym_identifier, - [48373] = 2, + ACTIONS(4209), 1, + aux_sym_preproc_if_token2, + [54970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_SQUOTE, - [48380] = 2, + ACTIONS(4211), 1, + anon_sym_STAR, + [54977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(2630), 1, anon_sym_SEMI, - [48387] = 2, + [54984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 1, - anon_sym_SEMI, - [48394] = 2, + ACTIONS(4213), 1, + aux_sym_preproc_if_token2, + [54991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, - anon_sym_RPAREN, - [48401] = 2, + ACTIONS(2646), 1, + anon_sym_SEMI, + [54998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(4215), 1, anon_sym_SEMI, - [48408] = 2, + [55005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_SEMI, - [48415] = 2, + ACTIONS(4217), 1, + aux_sym_preproc_if_token2, + [55012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2642), 1, anon_sym_SEMI, - [48422] = 2, + [55019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 1, - anon_sym_while, - [48429] = 2, + ACTIONS(4219), 1, + anon_sym_RPAREN, + [55026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_SEMI, - [48436] = 2, + ACTIONS(4221), 1, + sym_identifier, + [55033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, - anon_sym_SEMI, - [48443] = 2, + ACTIONS(4223), 1, + sym_identifier, + [55040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3810), 1, - sym_identifier, - [48450] = 2, + ACTIONS(4225), 1, + aux_sym_preproc_if_token2, + [55047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, - anon_sym_SEMI, - [48457] = 2, + ACTIONS(4227), 1, + aux_sym_preproc_if_token2, + [55054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, - anon_sym_RPAREN, - [48464] = 2, + ACTIONS(4229), 1, + sym_identifier, + [55061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(4231), 1, sym_identifier, - [48471] = 2, + [55068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4233), 1, sym_identifier, - [48478] = 2, + [55075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(2580), 1, anon_sym_RPAREN, - [48485] = 2, - ACTIONS(2605), 1, + [55082] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_LF, + [55089] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3818), 1, + ACTIONS(4237), 1, anon_sym_LF, - [48492] = 2, + [55096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 1, - anon_sym_RPAREN, - [48499] = 2, + ACTIONS(4239), 1, + sym_identifier, + [55103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(4241), 1, sym_identifier, - [48506] = 2, + [55110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, + aux_sym_preproc_if_token2, + [55117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4245), 1, + anon_sym_STAR, + [55124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 1, + aux_sym_preproc_if_token2, + [55131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(4249), 1, anon_sym_RPAREN, - [48513] = 2, - ACTIONS(2605), 1, + [55138] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_LF, - [48520] = 2, + ACTIONS(4251), 1, + anon_sym_SQUOTE, + [55145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(2648), 1, anon_sym_SEMI, - [48527] = 2, + [55152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, - anon_sym_RBRACK, - [48534] = 2, + ACTIONS(4253), 1, + aux_sym_preproc_if_token2, + [55159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 1, - anon_sym_RPAREN, - [48541] = 2, + ACTIONS(2650), 1, + anon_sym_SEMI, + [55166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - sym_identifier, - [48548] = 2, + ACTIONS(4255), 1, + aux_sym_preproc_if_token2, + [55173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_SEMI, + [55180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(2658), 1, anon_sym_SEMI, - [48555] = 2, + [55187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(4259), 1, sym_identifier, - [48562] = 2, + [55194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 1, - anon_sym_SEMI, - [48569] = 2, - ACTIONS(1823), 1, - anon_sym_LF, - ACTIONS(2605), 1, + ACTIONS(4261), 1, + sym_identifier, + [55201] = 2, + ACTIONS(3), 1, sym_comment, - [48576] = 2, + ACTIONS(4263), 1, + sym_identifier, + [55208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(4265), 1, sym_identifier, - [48583] = 2, + [55215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, + ACTIONS(2656), 1, anon_sym_SEMI, - [48590] = 2, + [55222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, - anon_sym_COLON, - [48597] = 2, + ACTIONS(4267), 1, + anon_sym_while, + [55229] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(4269), 1, + anon_sym_LF, + [55236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(4271), 1, anon_sym_SEMI, - [48604] = 2, + [55243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3836), 1, - anon_sym_LPAREN2, - [48611] = 2, + ACTIONS(4273), 1, + aux_sym_preproc_if_token2, + [55250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(2544), 1, anon_sym_RPAREN, - [48618] = 2, + [55257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 1, - anon_sym_SEMI, - [48625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 1, + ACTIONS(4275), 1, sym_identifier, - [48632] = 2, + [55264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 1, - sym_identifier, - [48639] = 2, + ACTIONS(4277), 1, + aux_sym_preproc_if_token2, + [55271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - sym_identifier, - [48646] = 2, + ACTIONS(4279), 1, + anon_sym_RPAREN, + [55278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2542), 1, anon_sym_RPAREN, - [48653] = 2, - ACTIONS(2605), 1, - sym_comment, - ACTIONS(3846), 1, - anon_sym_LF, - [48660] = 2, + [55285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_RPAREN, - [48667] = 2, + ACTIONS(4281), 1, + anon_sym_while, + [55292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - anon_sym_STAR, - [48674] = 2, + ACTIONS(4283), 1, + anon_sym_RPAREN, + [55299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, + ACTIONS(4285), 1, anon_sym_RPAREN, - [48681] = 2, + [55306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, - anon_sym_SEMI, - [48688] = 2, - ACTIONS(2605), 1, + ACTIONS(2530), 1, + anon_sym_RPAREN, + [55313] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(4287), 1, anon_sym_LF, - [48695] = 2, + [55320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 1, + anon_sym_RBRACK, + [55327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, + ACTIONS(2566), 1, anon_sym_SEMI, - [48702] = 2, + [55334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, + ACTIONS(4291), 1, + aux_sym_preproc_if_token2, + [55341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, anon_sym_RPAREN, - [48709] = 2, + [55348] = 2, + ACTIONS(2922), 1, + sym_comment, + ACTIONS(3813), 1, + anon_sym_LF, + [55355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2612), 1, anon_sym_SEMI, - [48716] = 2, + [55362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + ts_builtin_sym_end, + [55369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 1, + ACTIONS(4295), 1, anon_sym_while, - [48723] = 2, + [55376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - ts_builtin_sym_end, - [48730] = 2, + ACTIONS(4297), 1, + anon_sym_SQUOTE, + [55383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 1, + ACTIONS(4299), 1, aux_sym_preproc_if_token2, - [48737] = 2, + [55390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, - anon_sym_SEMI, - [48744] = 2, + ACTIONS(2578), 1, + anon_sym_RPAREN, + [55397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, - sym_identifier, - [48751] = 2, + ACTIONS(2654), 1, + anon_sym_SEMI, + [55404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 1, + ACTIONS(4301), 1, anon_sym_LPAREN2, - [48758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2226), 1, - anon_sym_SEMI, - [48765] = 2, + [55411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, + ACTIONS(4303), 1, anon_sym_LPAREN2, - [48772] = 2, + [55418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 1, + ACTIONS(4305), 1, sym_identifier, - [48779] = 2, + [55425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(4307), 1, anon_sym_SEMI, - [48786] = 2, + [55432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 1, + anon_sym_while, + [55439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, + ACTIONS(4311), 1, anon_sym_SEMI, - [48793] = 2, + [55446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(4313), 1, anon_sym_LPAREN2, - [48800] = 2, + [55453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, - anon_sym_while, - [48807] = 2, + ACTIONS(4315), 1, + anon_sym_RPAREN, + [55460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 1, - anon_sym_RPAREN, - [48814] = 2, + ACTIONS(2532), 1, + anon_sym_SEMI, + [55467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, + ACTIONS(4317), 1, anon_sym_COLON, - [48821] = 2, - ACTIONS(3), 1, + [55474] = 2, + ACTIONS(2922), 1, sym_comment, - ACTIONS(3878), 1, - aux_sym_preproc_if_token2, - [48828] = 2, + ACTIONS(4319), 1, + anon_sym_LF, + [55481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(4321), 1, anon_sym_SEMI, - [48835] = 2, + [55488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, - aux_sym_preproc_if_token2, - [48842] = 2, + ACTIONS(2538), 1, + anon_sym_RPAREN, + [55495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, - anon_sym_RPAREN, - [48849] = 2, + ACTIONS(4323), 1, + anon_sym_while, + [55502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2255), 1, - anon_sym_RPAREN, - [48856] = 2, + ACTIONS(4325), 1, + aux_sym_preproc_if_token2, + [55509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, + ACTIONS(2536), 1, anon_sym_RPAREN, - [48863] = 2, + [55516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 1, - anon_sym_while, - [48870] = 2, + ACTIONS(2620), 1, + anon_sym_SEMI, + [55523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 1, + ACTIONS(4327), 1, anon_sym_LPAREN2, - [48877] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 1, - aux_sym_preproc_if_token2, - [48884] = 2, + [55530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2636), 1, anon_sym_SEMI, - [48891] = 2, + [55537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, + ACTIONS(4329), 1, anon_sym_LPAREN2, - [48898] = 2, + [55544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, - aux_sym_preproc_if_token2, - [48905] = 2, + ACTIONS(4331), 1, + anon_sym_LPAREN2, + [55551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(4333), 1, anon_sym_LPAREN2, - [48912] = 2, + [55558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 1, - sym_identifier, - [48919] = 2, + ACTIONS(4335), 1, + aux_sym_preproc_if_token2, + [55565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, + ACTIONS(4337), 1, anon_sym_LPAREN2, - [48926] = 2, + [55572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(4339), 1, sym_identifier, - [48933] = 2, + [55579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3900), 1, + ACTIONS(4341), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(406)] = 0, - [SMALL_STATE(407)] = 121, - [SMALL_STATE(408)] = 234, - [SMALL_STATE(409)] = 344, - [SMALL_STATE(410)] = 450, - [SMALL_STATE(411)] = 556, - [SMALL_STATE(412)] = 662, - [SMALL_STATE(413)] = 768, - [SMALL_STATE(414)] = 874, - [SMALL_STATE(415)] = 980, - [SMALL_STATE(416)] = 1086, - [SMALL_STATE(417)] = 1196, - [SMALL_STATE(418)] = 1302, - [SMALL_STATE(419)] = 1408, - [SMALL_STATE(420)] = 1514, - [SMALL_STATE(421)] = 1621, - [SMALL_STATE(422)] = 1731, - [SMALL_STATE(423)] = 1841, - [SMALL_STATE(424)] = 1951, - [SMALL_STATE(425)] = 2061, - [SMALL_STATE(426)] = 2171, - [SMALL_STATE(427)] = 2281, - [SMALL_STATE(428)] = 2391, - [SMALL_STATE(429)] = 2501, - [SMALL_STATE(430)] = 2611, - [SMALL_STATE(431)] = 2721, - [SMALL_STATE(432)] = 2831, - [SMALL_STATE(433)] = 2941, - [SMALL_STATE(434)] = 3051, - [SMALL_STATE(435)] = 3161, - [SMALL_STATE(436)] = 3238, - [SMALL_STATE(437)] = 3317, - [SMALL_STATE(438)] = 3396, - [SMALL_STATE(439)] = 3473, - [SMALL_STATE(440)] = 3552, - [SMALL_STATE(441)] = 3631, - [SMALL_STATE(442)] = 3708, - [SMALL_STATE(443)] = 3785, - [SMALL_STATE(444)] = 3887, - [SMALL_STATE(445)] = 3961, - [SMALL_STATE(446)] = 4061, - [SMALL_STATE(447)] = 4159, - [SMALL_STATE(448)] = 4257, - [SMALL_STATE(449)] = 4357, - [SMALL_STATE(450)] = 4457, - [SMALL_STATE(451)] = 4557, - [SMALL_STATE(452)] = 4657, - [SMALL_STATE(453)] = 4757, - [SMALL_STATE(454)] = 4852, - [SMALL_STATE(455)] = 4947, - [SMALL_STATE(456)] = 5042, - [SMALL_STATE(457)] = 5137, - [SMALL_STATE(458)] = 5232, - [SMALL_STATE(459)] = 5327, - [SMALL_STATE(460)] = 5422, - [SMALL_STATE(461)] = 5517, - [SMALL_STATE(462)] = 5612, - [SMALL_STATE(463)] = 5707, - [SMALL_STATE(464)] = 5802, - [SMALL_STATE(465)] = 5907, - [SMALL_STATE(466)] = 6002, - [SMALL_STATE(467)] = 6097, - [SMALL_STATE(468)] = 6192, - [SMALL_STATE(469)] = 6287, - [SMALL_STATE(470)] = 6382, - [SMALL_STATE(471)] = 6477, - [SMALL_STATE(472)] = 6572, - [SMALL_STATE(473)] = 6667, - [SMALL_STATE(474)] = 6762, - [SMALL_STATE(475)] = 6857, - [SMALL_STATE(476)] = 6952, - [SMALL_STATE(477)] = 7047, - [SMALL_STATE(478)] = 7142, - [SMALL_STATE(479)] = 7237, - [SMALL_STATE(480)] = 7332, - [SMALL_STATE(481)] = 7427, - [SMALL_STATE(482)] = 7522, - [SMALL_STATE(483)] = 7617, - [SMALL_STATE(484)] = 7712, - [SMALL_STATE(485)] = 7807, - [SMALL_STATE(486)] = 7902, - [SMALL_STATE(487)] = 7997, - [SMALL_STATE(488)] = 8092, - [SMALL_STATE(489)] = 8187, - [SMALL_STATE(490)] = 8282, - [SMALL_STATE(491)] = 8377, - [SMALL_STATE(492)] = 8472, - [SMALL_STATE(493)] = 8567, - [SMALL_STATE(494)] = 8662, - [SMALL_STATE(495)] = 8757, - [SMALL_STATE(496)] = 8852, - [SMALL_STATE(497)] = 8947, - [SMALL_STATE(498)] = 9042, - [SMALL_STATE(499)] = 9137, - [SMALL_STATE(500)] = 9232, - [SMALL_STATE(501)] = 9327, - [SMALL_STATE(502)] = 9419, - [SMALL_STATE(503)] = 9511, - [SMALL_STATE(504)] = 9603, - [SMALL_STATE(505)] = 9695, - [SMALL_STATE(506)] = 9787, - [SMALL_STATE(507)] = 9851, - [SMALL_STATE(508)] = 9943, - [SMALL_STATE(509)] = 10035, - [SMALL_STATE(510)] = 10127, - [SMALL_STATE(511)] = 10219, - [SMALL_STATE(512)] = 10311, - [SMALL_STATE(513)] = 10403, - [SMALL_STATE(514)] = 10467, - [SMALL_STATE(515)] = 10559, - [SMALL_STATE(516)] = 10623, - [SMALL_STATE(517)] = 10715, - [SMALL_STATE(518)] = 10807, - [SMALL_STATE(519)] = 10899, - [SMALL_STATE(520)] = 10991, - [SMALL_STATE(521)] = 11083, - [SMALL_STATE(522)] = 11176, - [SMALL_STATE(523)] = 11265, - [SMALL_STATE(524)] = 11354, - [SMALL_STATE(525)] = 11443, - [SMALL_STATE(526)] = 11532, - [SMALL_STATE(527)] = 11621, - [SMALL_STATE(528)] = 11710, - [SMALL_STATE(529)] = 11799, - [SMALL_STATE(530)] = 11888, - [SMALL_STATE(531)] = 11977, - [SMALL_STATE(532)] = 12066, - [SMALL_STATE(533)] = 12155, - [SMALL_STATE(534)] = 12248, - [SMALL_STATE(535)] = 12337, - [SMALL_STATE(536)] = 12430, - [SMALL_STATE(537)] = 12519, - [SMALL_STATE(538)] = 12608, - [SMALL_STATE(539)] = 12697, - [SMALL_STATE(540)] = 12786, - [SMALL_STATE(541)] = 12875, - [SMALL_STATE(542)] = 12964, - [SMALL_STATE(543)] = 13053, - [SMALL_STATE(544)] = 13142, - [SMALL_STATE(545)] = 13231, - [SMALL_STATE(546)] = 13320, - [SMALL_STATE(547)] = 13409, - [SMALL_STATE(548)] = 13498, - [SMALL_STATE(549)] = 13591, - [SMALL_STATE(550)] = 13680, - [SMALL_STATE(551)] = 13769, - [SMALL_STATE(552)] = 13858, - [SMALL_STATE(553)] = 13947, - [SMALL_STATE(554)] = 14036, - [SMALL_STATE(555)] = 14125, - [SMALL_STATE(556)] = 14214, - [SMALL_STATE(557)] = 14303, - [SMALL_STATE(558)] = 14392, - [SMALL_STATE(559)] = 14481, - [SMALL_STATE(560)] = 14570, - [SMALL_STATE(561)] = 14659, - [SMALL_STATE(562)] = 14748, - [SMALL_STATE(563)] = 14837, - [SMALL_STATE(564)] = 14926, - [SMALL_STATE(565)] = 15015, - [SMALL_STATE(566)] = 15104, - [SMALL_STATE(567)] = 15193, - [SMALL_STATE(568)] = 15282, - [SMALL_STATE(569)] = 15371, - [SMALL_STATE(570)] = 15460, - [SMALL_STATE(571)] = 15549, - [SMALL_STATE(572)] = 15638, - [SMALL_STATE(573)] = 15727, - [SMALL_STATE(574)] = 15816, - [SMALL_STATE(575)] = 15905, - [SMALL_STATE(576)] = 15994, - [SMALL_STATE(577)] = 16083, - [SMALL_STATE(578)] = 16172, - [SMALL_STATE(579)] = 16261, - [SMALL_STATE(580)] = 16350, - [SMALL_STATE(581)] = 16439, - [SMALL_STATE(582)] = 16528, - [SMALL_STATE(583)] = 16617, - [SMALL_STATE(584)] = 16706, - [SMALL_STATE(585)] = 16795, - [SMALL_STATE(586)] = 16884, - [SMALL_STATE(587)] = 16973, - [SMALL_STATE(588)] = 17062, - [SMALL_STATE(589)] = 17151, - [SMALL_STATE(590)] = 17240, - [SMALL_STATE(591)] = 17329, - [SMALL_STATE(592)] = 17418, - [SMALL_STATE(593)] = 17507, - [SMALL_STATE(594)] = 17596, - [SMALL_STATE(595)] = 17685, - [SMALL_STATE(596)] = 17774, - [SMALL_STATE(597)] = 17863, - [SMALL_STATE(598)] = 17952, - [SMALL_STATE(599)] = 18041, - [SMALL_STATE(600)] = 18130, - [SMALL_STATE(601)] = 18219, - [SMALL_STATE(602)] = 18308, - [SMALL_STATE(603)] = 18364, - [SMALL_STATE(604)] = 18420, - [SMALL_STATE(605)] = 18484, - [SMALL_STATE(606)] = 18535, - [SMALL_STATE(607)] = 18586, - [SMALL_STATE(608)] = 18637, - [SMALL_STATE(609)] = 18688, - [SMALL_STATE(610)] = 18738, - [SMALL_STATE(611)] = 18788, - [SMALL_STATE(612)] = 18864, - [SMALL_STATE(613)] = 18942, - [SMALL_STATE(614)] = 18992, - [SMALL_STATE(615)] = 19072, - [SMALL_STATE(616)] = 19134, - [SMALL_STATE(617)] = 19184, - [SMALL_STATE(618)] = 19266, - [SMALL_STATE(619)] = 19316, - [SMALL_STATE(620)] = 19366, - [SMALL_STATE(621)] = 19416, - [SMALL_STATE(622)] = 19466, - [SMALL_STATE(623)] = 19550, - [SMALL_STATE(624)] = 19600, - [SMALL_STATE(625)] = 19650, - [SMALL_STATE(626)] = 19700, - [SMALL_STATE(627)] = 19750, - [SMALL_STATE(628)] = 19800, - [SMALL_STATE(629)] = 19884, - [SMALL_STATE(630)] = 19934, - [SMALL_STATE(631)] = 19984, - [SMALL_STATE(632)] = 20068, - [SMALL_STATE(633)] = 20138, - [SMALL_STATE(634)] = 20188, - [SMALL_STATE(635)] = 20248, - [SMALL_STATE(636)] = 20322, - [SMALL_STATE(637)] = 20372, - [SMALL_STATE(638)] = 20422, - [SMALL_STATE(639)] = 20472, - [SMALL_STATE(640)] = 20522, - [SMALL_STATE(641)] = 20572, - [SMALL_STATE(642)] = 20638, - [SMALL_STATE(643)] = 20688, - [SMALL_STATE(644)] = 20738, - [SMALL_STATE(645)] = 20798, - [SMALL_STATE(646)] = 20848, - [SMALL_STATE(647)] = 20898, - [SMALL_STATE(648)] = 20970, - [SMALL_STATE(649)] = 21036, - [SMALL_STATE(650)] = 21086, - [SMALL_STATE(651)] = 21146, - [SMALL_STATE(652)] = 21196, - [SMALL_STATE(653)] = 21246, - [SMALL_STATE(654)] = 21306, - [SMALL_STATE(655)] = 21364, - [SMALL_STATE(656)] = 21428, - [SMALL_STATE(657)] = 21481, - [SMALL_STATE(658)] = 21562, - [SMALL_STATE(659)] = 21615, - [SMALL_STATE(660)] = 21668, - [SMALL_STATE(661)] = 21721, - [SMALL_STATE(662)] = 21774, - [SMALL_STATE(663)] = 21840, - [SMALL_STATE(664)] = 21908, - [SMALL_STATE(665)] = 21962, - [SMALL_STATE(666)] = 22018, - [SMALL_STATE(667)] = 22098, - [SMALL_STATE(668)] = 22172, - [SMALL_STATE(669)] = 22232, - [SMALL_STATE(670)] = 22282, - [SMALL_STATE(671)] = 22356, - [SMALL_STATE(672)] = 22434, - [SMALL_STATE(673)] = 22514, - [SMALL_STATE(674)] = 22588, - [SMALL_STATE(675)] = 22646, - [SMALL_STATE(676)] = 22708, - [SMALL_STATE(677)] = 22770, - [SMALL_STATE(678)] = 22826, - [SMALL_STATE(679)] = 22896, - [SMALL_STATE(680)] = 22952, - [SMALL_STATE(681)] = 23024, - [SMALL_STATE(682)] = 23098, - [SMALL_STATE(683)] = 23174, - [SMALL_STATE(684)] = 23248, - [SMALL_STATE(685)] = 23304, - [SMALL_STATE(686)] = 23349, - [SMALL_STATE(687)] = 23398, - [SMALL_STATE(688)] = 23469, - [SMALL_STATE(689)] = 23514, - [SMALL_STATE(690)] = 23571, - [SMALL_STATE(691)] = 23616, - [SMALL_STATE(692)] = 23660, - [SMALL_STATE(693)] = 23736, - [SMALL_STATE(694)] = 23776, - [SMALL_STATE(695)] = 23847, - [SMALL_STATE(696)] = 23886, - [SMALL_STATE(697)] = 23925, - [SMALL_STATE(698)] = 23964, - [SMALL_STATE(699)] = 24003, - [SMALL_STATE(700)] = 24042, - [SMALL_STATE(701)] = 24081, - [SMALL_STATE(702)] = 24120, - [SMALL_STATE(703)] = 24159, - [SMALL_STATE(704)] = 24198, - [SMALL_STATE(705)] = 24237, - [SMALL_STATE(706)] = 24276, - [SMALL_STATE(707)] = 24315, - [SMALL_STATE(708)] = 24372, - [SMALL_STATE(709)] = 24411, - [SMALL_STATE(710)] = 24450, - [SMALL_STATE(711)] = 24523, - [SMALL_STATE(712)] = 24576, - [SMALL_STATE(713)] = 24645, - [SMALL_STATE(714)] = 24712, - [SMALL_STATE(715)] = 24751, - [SMALL_STATE(716)] = 24824, - [SMALL_STATE(717)] = 24863, - [SMALL_STATE(718)] = 24902, - [SMALL_STATE(719)] = 24941, - [SMALL_STATE(720)] = 25008, - [SMALL_STATE(721)] = 25047, - [SMALL_STATE(722)] = 25086, - [SMALL_STATE(723)] = 25125, - [SMALL_STATE(724)] = 25180, - [SMALL_STATE(725)] = 25237, - [SMALL_STATE(726)] = 25298, - [SMALL_STATE(727)] = 25361, - [SMALL_STATE(728)] = 25426, - [SMALL_STATE(729)] = 25464, - [SMALL_STATE(730)] = 25502, - [SMALL_STATE(731)] = 25540, - [SMALL_STATE(732)] = 25578, - [SMALL_STATE(733)] = 25616, - [SMALL_STATE(734)] = 25653, - [SMALL_STATE(735)] = 25690, - [SMALL_STATE(736)] = 25765, - [SMALL_STATE(737)] = 25802, - [SMALL_STATE(738)] = 25877, - [SMALL_STATE(739)] = 25952, - [SMALL_STATE(740)] = 26001, - [SMALL_STATE(741)] = 26038, - [SMALL_STATE(742)] = 26111, - [SMALL_STATE(743)] = 26148, - [SMALL_STATE(744)] = 26185, - [SMALL_STATE(745)] = 26226, - [SMALL_STATE(746)] = 26275, - [SMALL_STATE(747)] = 26324, - [SMALL_STATE(748)] = 26365, - [SMALL_STATE(749)] = 26402, - [SMALL_STATE(750)] = 26439, - [SMALL_STATE(751)] = 26476, - [SMALL_STATE(752)] = 26513, - [SMALL_STATE(753)] = 26554, - [SMALL_STATE(754)] = 26591, - [SMALL_STATE(755)] = 26632, - [SMALL_STATE(756)] = 26669, - [SMALL_STATE(757)] = 26706, - [SMALL_STATE(758)] = 26743, - [SMALL_STATE(759)] = 26780, - [SMALL_STATE(760)] = 26817, - [SMALL_STATE(761)] = 26858, - [SMALL_STATE(762)] = 26895, - [SMALL_STATE(763)] = 26932, - [SMALL_STATE(764)] = 26969, - [SMALL_STATE(765)] = 27006, - [SMALL_STATE(766)] = 27043, - [SMALL_STATE(767)] = 27080, - [SMALL_STATE(768)] = 27117, - [SMALL_STATE(769)] = 27154, - [SMALL_STATE(770)] = 27191, - [SMALL_STATE(771)] = 27228, - [SMALL_STATE(772)] = 27265, - [SMALL_STATE(773)] = 27302, - [SMALL_STATE(774)] = 27377, - [SMALL_STATE(775)] = 27414, - [SMALL_STATE(776)] = 27451, - [SMALL_STATE(777)] = 27488, - [SMALL_STATE(778)] = 27525, - [SMALL_STATE(779)] = 27562, - [SMALL_STATE(780)] = 27599, - [SMALL_STATE(781)] = 27636, - [SMALL_STATE(782)] = 27673, - [SMALL_STATE(783)] = 27710, - [SMALL_STATE(784)] = 27759, - [SMALL_STATE(785)] = 27796, - [SMALL_STATE(786)] = 27868, - [SMALL_STATE(787)] = 27940, - [SMALL_STATE(788)] = 28010, - [SMALL_STATE(789)] = 28080, - [SMALL_STATE(790)] = 28152, - [SMALL_STATE(791)] = 28224, - [SMALL_STATE(792)] = 28296, - [SMALL_STATE(793)] = 28368, - [SMALL_STATE(794)] = 28440, - [SMALL_STATE(795)] = 28512, - [SMALL_STATE(796)] = 28584, - [SMALL_STATE(797)] = 28656, - [SMALL_STATE(798)] = 28728, - [SMALL_STATE(799)] = 28800, - [SMALL_STATE(800)] = 28872, - [SMALL_STATE(801)] = 28916, - [SMALL_STATE(802)] = 28988, - [SMALL_STATE(803)] = 29060, - [SMALL_STATE(804)] = 29132, - [SMALL_STATE(805)] = 29204, - [SMALL_STATE(806)] = 29276, - [SMALL_STATE(807)] = 29348, - [SMALL_STATE(808)] = 29420, - [SMALL_STATE(809)] = 29492, - [SMALL_STATE(810)] = 29552, - [SMALL_STATE(811)] = 29624, - [SMALL_STATE(812)] = 29696, - [SMALL_STATE(813)] = 29766, - [SMALL_STATE(814)] = 29838, - [SMALL_STATE(815)] = 29910, - [SMALL_STATE(816)] = 29980, - [SMALL_STATE(817)] = 30052, - [SMALL_STATE(818)] = 30124, - [SMALL_STATE(819)] = 30196, - [SMALL_STATE(820)] = 30266, - [SMALL_STATE(821)] = 30336, - [SMALL_STATE(822)] = 30408, - [SMALL_STATE(823)] = 30480, - [SMALL_STATE(824)] = 30552, - [SMALL_STATE(825)] = 30624, - [SMALL_STATE(826)] = 30696, - [SMALL_STATE(827)] = 30768, - [SMALL_STATE(828)] = 30840, - [SMALL_STATE(829)] = 30912, - [SMALL_STATE(830)] = 30984, - [SMALL_STATE(831)] = 31056, - [SMALL_STATE(832)] = 31128, - [SMALL_STATE(833)] = 31200, - [SMALL_STATE(834)] = 31270, - [SMALL_STATE(835)] = 31342, - [SMALL_STATE(836)] = 31414, - [SMALL_STATE(837)] = 31486, - [SMALL_STATE(838)] = 31558, - [SMALL_STATE(839)] = 31630, - [SMALL_STATE(840)] = 31702, - [SMALL_STATE(841)] = 31774, - [SMALL_STATE(842)] = 31846, - [SMALL_STATE(843)] = 31918, - [SMALL_STATE(844)] = 31990, - [SMALL_STATE(845)] = 32047, - [SMALL_STATE(846)] = 32104, - [SMALL_STATE(847)] = 32173, - [SMALL_STATE(848)] = 32242, - [SMALL_STATE(849)] = 32299, - [SMALL_STATE(850)] = 32356, - [SMALL_STATE(851)] = 32425, - [SMALL_STATE(852)] = 32494, - [SMALL_STATE(853)] = 32551, - [SMALL_STATE(854)] = 32608, - [SMALL_STATE(855)] = 32677, - [SMALL_STATE(856)] = 32746, - [SMALL_STATE(857)] = 32815, - [SMALL_STATE(858)] = 32866, - [SMALL_STATE(859)] = 32919, - [SMALL_STATE(860)] = 32988, - [SMALL_STATE(861)] = 33057, - [SMALL_STATE(862)] = 33114, - [SMALL_STATE(863)] = 33183, - [SMALL_STATE(864)] = 33252, - [SMALL_STATE(865)] = 33311, - [SMALL_STATE(866)] = 33372, - [SMALL_STATE(867)] = 33441, - [SMALL_STATE(868)] = 33494, - [SMALL_STATE(869)] = 33551, - [SMALL_STATE(870)] = 33620, - [SMALL_STATE(871)] = 33689, - [SMALL_STATE(872)] = 33746, - [SMALL_STATE(873)] = 33815, - [SMALL_STATE(874)] = 33878, - [SMALL_STATE(875)] = 33947, - [SMALL_STATE(876)] = 34016, - [SMALL_STATE(877)] = 34085, - [SMALL_STATE(878)] = 34148, - [SMALL_STATE(879)] = 34217, - [SMALL_STATE(880)] = 34282, - [SMALL_STATE(881)] = 34339, - [SMALL_STATE(882)] = 34388, - [SMALL_STATE(883)] = 34457, - [SMALL_STATE(884)] = 34514, - [SMALL_STATE(885)] = 34583, - [SMALL_STATE(886)] = 34652, - [SMALL_STATE(887)] = 34709, - [SMALL_STATE(888)] = 34778, - [SMALL_STATE(889)] = 34845, - [SMALL_STATE(890)] = 34914, - [SMALL_STATE(891)] = 34983, - [SMALL_STATE(892)] = 35040, - [SMALL_STATE(893)] = 35088, - [SMALL_STATE(894)] = 35136, - [SMALL_STATE(895)] = 35184, - [SMALL_STATE(896)] = 35232, - [SMALL_STATE(897)] = 35269, - [SMALL_STATE(898)] = 35322, - [SMALL_STATE(899)] = 35375, - [SMALL_STATE(900)] = 35428, - [SMALL_STATE(901)] = 35467, - [SMALL_STATE(902)] = 35504, - [SMALL_STATE(903)] = 35541, - [SMALL_STATE(904)] = 35594, - [SMALL_STATE(905)] = 35631, - [SMALL_STATE(906)] = 35668, - [SMALL_STATE(907)] = 35718, - [SMALL_STATE(908)] = 35768, - [SMALL_STATE(909)] = 35818, - [SMALL_STATE(910)] = 35868, - [SMALL_STATE(911)] = 35904, - [SMALL_STATE(912)] = 35954, - [SMALL_STATE(913)] = 36004, - [SMALL_STATE(914)] = 36054, - [SMALL_STATE(915)] = 36104, - [SMALL_STATE(916)] = 36154, - [SMALL_STATE(917)] = 36204, - [SMALL_STATE(918)] = 36235, - [SMALL_STATE(919)] = 36266, - [SMALL_STATE(920)] = 36297, - [SMALL_STATE(921)] = 36328, - [SMALL_STATE(922)] = 36359, - [SMALL_STATE(923)] = 36390, - [SMALL_STATE(924)] = 36421, - [SMALL_STATE(925)] = 36452, - [SMALL_STATE(926)] = 36483, - [SMALL_STATE(927)] = 36514, - [SMALL_STATE(928)] = 36545, - [SMALL_STATE(929)] = 36576, - [SMALL_STATE(930)] = 36607, - [SMALL_STATE(931)] = 36638, - [SMALL_STATE(932)] = 36669, - [SMALL_STATE(933)] = 36702, - [SMALL_STATE(934)] = 36733, - [SMALL_STATE(935)] = 36764, - [SMALL_STATE(936)] = 36795, - [SMALL_STATE(937)] = 36826, - [SMALL_STATE(938)] = 36857, - [SMALL_STATE(939)] = 36888, - [SMALL_STATE(940)] = 36919, - [SMALL_STATE(941)] = 36953, - [SMALL_STATE(942)] = 36996, - [SMALL_STATE(943)] = 37031, - [SMALL_STATE(944)] = 37074, - [SMALL_STATE(945)] = 37129, - [SMALL_STATE(946)] = 37184, - [SMALL_STATE(947)] = 37217, - [SMALL_STATE(948)] = 37257, - [SMALL_STATE(949)] = 37299, - [SMALL_STATE(950)] = 37327, - [SMALL_STATE(951)] = 37369, - [SMALL_STATE(952)] = 37397, - [SMALL_STATE(953)] = 37437, - [SMALL_STATE(954)] = 37465, - [SMALL_STATE(955)] = 37505, - [SMALL_STATE(956)] = 37547, - [SMALL_STATE(957)] = 37587, - [SMALL_STATE(958)] = 37629, - [SMALL_STATE(959)] = 37671, - [SMALL_STATE(960)] = 37703, - [SMALL_STATE(961)] = 37743, - [SMALL_STATE(962)] = 37771, - [SMALL_STATE(963)] = 37819, - [SMALL_STATE(964)] = 37865, - [SMALL_STATE(965)] = 37911, - [SMALL_STATE(966)] = 37951, - [SMALL_STATE(967)] = 37991, - [SMALL_STATE(968)] = 38031, - [SMALL_STATE(969)] = 38071, - [SMALL_STATE(970)] = 38111, - [SMALL_STATE(971)] = 38155, - [SMALL_STATE(972)] = 38195, - [SMALL_STATE(973)] = 38235, - [SMALL_STATE(974)] = 38275, - [SMALL_STATE(975)] = 38315, - [SMALL_STATE(976)] = 38355, - [SMALL_STATE(977)] = 38395, - [SMALL_STATE(978)] = 38435, - [SMALL_STATE(979)] = 38477, - [SMALL_STATE(980)] = 38505, - [SMALL_STATE(981)] = 38533, - [SMALL_STATE(982)] = 38573, - [SMALL_STATE(983)] = 38609, - [SMALL_STATE(984)] = 38637, - [SMALL_STATE(985)] = 38677, - [SMALL_STATE(986)] = 38711, - [SMALL_STATE(987)] = 38751, - [SMALL_STATE(988)] = 38791, - [SMALL_STATE(989)] = 38831, - [SMALL_STATE(990)] = 38871, - [SMALL_STATE(991)] = 38911, - [SMALL_STATE(992)] = 38951, - [SMALL_STATE(993)] = 38991, - [SMALL_STATE(994)] = 39041, - [SMALL_STATE(995)] = 39081, - [SMALL_STATE(996)] = 39121, - [SMALL_STATE(997)] = 39161, - [SMALL_STATE(998)] = 39201, - [SMALL_STATE(999)] = 39241, - [SMALL_STATE(1000)] = 39281, - [SMALL_STATE(1001)] = 39321, - [SMALL_STATE(1002)] = 39349, - [SMALL_STATE(1003)] = 39389, - [SMALL_STATE(1004)] = 39417, - [SMALL_STATE(1005)] = 39457, - [SMALL_STATE(1006)] = 39485, - [SMALL_STATE(1007)] = 39533, - [SMALL_STATE(1008)] = 39575, - [SMALL_STATE(1009)] = 39602, - [SMALL_STATE(1010)] = 39643, - [SMALL_STATE(1011)] = 39688, - [SMALL_STATE(1012)] = 39729, - [SMALL_STATE(1013)] = 39770, - [SMALL_STATE(1014)] = 39811, - [SMALL_STATE(1015)] = 39852, - [SMALL_STATE(1016)] = 39887, - [SMALL_STATE(1017)] = 39928, - [SMALL_STATE(1018)] = 39973, - [SMALL_STATE(1019)] = 40018, - [SMALL_STATE(1020)] = 40059, - [SMALL_STATE(1021)] = 40100, - [SMALL_STATE(1022)] = 40141, - [SMALL_STATE(1023)] = 40182, - [SMALL_STATE(1024)] = 40227, - [SMALL_STATE(1025)] = 40254, - [SMALL_STATE(1026)] = 40303, - [SMALL_STATE(1027)] = 40330, - [SMALL_STATE(1028)] = 40357, - [SMALL_STATE(1029)] = 40402, - [SMALL_STATE(1030)] = 40443, - [SMALL_STATE(1031)] = 40484, - [SMALL_STATE(1032)] = 40525, - [SMALL_STATE(1033)] = 40566, - [SMALL_STATE(1034)] = 40607, - [SMALL_STATE(1035)] = 40648, - [SMALL_STATE(1036)] = 40693, - [SMALL_STATE(1037)] = 40734, - [SMALL_STATE(1038)] = 40775, - [SMALL_STATE(1039)] = 40816, - [SMALL_STATE(1040)] = 40843, - [SMALL_STATE(1041)] = 40870, - [SMALL_STATE(1042)] = 40899, - [SMALL_STATE(1043)] = 40926, - [SMALL_STATE(1044)] = 40969, - [SMALL_STATE(1045)] = 41010, - [SMALL_STATE(1046)] = 41049, - [SMALL_STATE(1047)] = 41086, - [SMALL_STATE(1048)] = 41121, - [SMALL_STATE(1049)] = 41154, - [SMALL_STATE(1050)] = 41185, - [SMALL_STATE(1051)] = 41230, - [SMALL_STATE(1052)] = 41257, - [SMALL_STATE(1053)] = 41298, - [SMALL_STATE(1054)] = 41343, - [SMALL_STATE(1055)] = 41388, - [SMALL_STATE(1056)] = 41429, - [SMALL_STATE(1057)] = 41474, - [SMALL_STATE(1058)] = 41501, - [SMALL_STATE(1059)] = 41528, - [SMALL_STATE(1060)] = 41569, - [SMALL_STATE(1061)] = 41610, - [SMALL_STATE(1062)] = 41659, - [SMALL_STATE(1063)] = 41700, - [SMALL_STATE(1064)] = 41741, - [SMALL_STATE(1065)] = 41775, - [SMALL_STATE(1066)] = 41798, - [SMALL_STATE(1067)] = 41821, - [SMALL_STATE(1068)] = 41853, - [SMALL_STATE(1069)] = 41885, - [SMALL_STATE(1070)] = 41923, - [SMALL_STATE(1071)] = 41955, - [SMALL_STATE(1072)] = 41987, - [SMALL_STATE(1073)] = 42019, - [SMALL_STATE(1074)] = 42051, - [SMALL_STATE(1075)] = 42089, - [SMALL_STATE(1076)] = 42121, - [SMALL_STATE(1077)] = 42153, - [SMALL_STATE(1078)] = 42191, - [SMALL_STATE(1079)] = 42223, - [SMALL_STATE(1080)] = 42255, - [SMALL_STATE(1081)] = 42287, - [SMALL_STATE(1082)] = 42319, - [SMALL_STATE(1083)] = 42357, - [SMALL_STATE(1084)] = 42381, - [SMALL_STATE(1085)] = 42408, - [SMALL_STATE(1086)] = 42431, - [SMALL_STATE(1087)] = 42454, - [SMALL_STATE(1088)] = 42483, - [SMALL_STATE(1089)] = 42518, - [SMALL_STATE(1090)] = 42547, - [SMALL_STATE(1091)] = 42582, - [SMALL_STATE(1092)] = 42611, - [SMALL_STATE(1093)] = 42646, - [SMALL_STATE(1094)] = 42675, - [SMALL_STATE(1095)] = 42704, - [SMALL_STATE(1096)] = 42731, - [SMALL_STATE(1097)] = 42760, - [SMALL_STATE(1098)] = 42789, - [SMALL_STATE(1099)] = 42816, - [SMALL_STATE(1100)] = 42839, - [SMALL_STATE(1101)] = 42866, - [SMALL_STATE(1102)] = 42893, - [SMALL_STATE(1103)] = 42920, - [SMALL_STATE(1104)] = 42943, - [SMALL_STATE(1105)] = 42972, - [SMALL_STATE(1106)] = 43001, - [SMALL_STATE(1107)] = 43027, - [SMALL_STATE(1108)] = 43059, - [SMALL_STATE(1109)] = 43091, - [SMALL_STATE(1110)] = 43123, - [SMALL_STATE(1111)] = 43149, - [SMALL_STATE(1112)] = 43167, - [SMALL_STATE(1113)] = 43191, - [SMALL_STATE(1114)] = 43213, - [SMALL_STATE(1115)] = 43245, - [SMALL_STATE(1116)] = 43271, - [SMALL_STATE(1117)] = 43297, - [SMALL_STATE(1118)] = 43327, - [SMALL_STATE(1119)] = 43351, - [SMALL_STATE(1120)] = 43369, - [SMALL_STATE(1121)] = 43387, - [SMALL_STATE(1122)] = 43408, - [SMALL_STATE(1123)] = 43433, - [SMALL_STATE(1124)] = 43462, - [SMALL_STATE(1125)] = 43491, - [SMALL_STATE(1126)] = 43520, - [SMALL_STATE(1127)] = 43549, - [SMALL_STATE(1128)] = 43576, - [SMALL_STATE(1129)] = 43601, - [SMALL_STATE(1130)] = 43630, - [SMALL_STATE(1131)] = 43659, - [SMALL_STATE(1132)] = 43680, - [SMALL_STATE(1133)] = 43709, - [SMALL_STATE(1134)] = 43738, - [SMALL_STATE(1135)] = 43767, - [SMALL_STATE(1136)] = 43796, - [SMALL_STATE(1137)] = 43825, - [SMALL_STATE(1138)] = 43854, - [SMALL_STATE(1139)] = 43875, - [SMALL_STATE(1140)] = 43900, - [SMALL_STATE(1141)] = 43929, - [SMALL_STATE(1142)] = 43954, - [SMALL_STATE(1143)] = 43975, - [SMALL_STATE(1144)] = 44004, - [SMALL_STATE(1145)] = 44033, - [SMALL_STATE(1146)] = 44062, - [SMALL_STATE(1147)] = 44083, - [SMALL_STATE(1148)] = 44109, - [SMALL_STATE(1149)] = 44135, - [SMALL_STATE(1150)] = 44155, - [SMALL_STATE(1151)] = 44179, - [SMALL_STATE(1152)] = 44199, - [SMALL_STATE(1153)] = 44215, - [SMALL_STATE(1154)] = 44231, - [SMALL_STATE(1155)] = 44249, - [SMALL_STATE(1156)] = 44265, - [SMALL_STATE(1157)] = 44291, - [SMALL_STATE(1158)] = 44307, - [SMALL_STATE(1159)] = 44331, - [SMALL_STATE(1160)] = 44351, - [SMALL_STATE(1161)] = 44367, - [SMALL_STATE(1162)] = 44383, - [SMALL_STATE(1163)] = 44409, - [SMALL_STATE(1164)] = 44432, - [SMALL_STATE(1165)] = 44455, - [SMALL_STATE(1166)] = 44470, - [SMALL_STATE(1167)] = 44493, - [SMALL_STATE(1168)] = 44508, - [SMALL_STATE(1169)] = 44523, - [SMALL_STATE(1170)] = 44538, - [SMALL_STATE(1171)] = 44555, - [SMALL_STATE(1172)] = 44570, - [SMALL_STATE(1173)] = 44587, - [SMALL_STATE(1174)] = 44602, - [SMALL_STATE(1175)] = 44617, - [SMALL_STATE(1176)] = 44632, - [SMALL_STATE(1177)] = 44646, - [SMALL_STATE(1178)] = 44662, - [SMALL_STATE(1179)] = 44676, - [SMALL_STATE(1180)] = 44690, - [SMALL_STATE(1181)] = 44706, - [SMALL_STATE(1182)] = 44720, - [SMALL_STATE(1183)] = 44738, - [SMALL_STATE(1184)] = 44752, - [SMALL_STATE(1185)] = 44766, - [SMALL_STATE(1186)] = 44780, - [SMALL_STATE(1187)] = 44794, - [SMALL_STATE(1188)] = 44812, - [SMALL_STATE(1189)] = 44826, - [SMALL_STATE(1190)] = 44842, - [SMALL_STATE(1191)] = 44860, - [SMALL_STATE(1192)] = 44878, - [SMALL_STATE(1193)] = 44892, - [SMALL_STATE(1194)] = 44906, - [SMALL_STATE(1195)] = 44924, - [SMALL_STATE(1196)] = 44942, - [SMALL_STATE(1197)] = 44960, - [SMALL_STATE(1198)] = 44978, - [SMALL_STATE(1199)] = 44995, - [SMALL_STATE(1200)] = 45012, - [SMALL_STATE(1201)] = 45023, - [SMALL_STATE(1202)] = 45034, - [SMALL_STATE(1203)] = 45045, - [SMALL_STATE(1204)] = 45056, - [SMALL_STATE(1205)] = 45067, - [SMALL_STATE(1206)] = 45086, - [SMALL_STATE(1207)] = 45097, - [SMALL_STATE(1208)] = 45108, - [SMALL_STATE(1209)] = 45119, - [SMALL_STATE(1210)] = 45130, - [SMALL_STATE(1211)] = 45141, - [SMALL_STATE(1212)] = 45152, - [SMALL_STATE(1213)] = 45171, - [SMALL_STATE(1214)] = 45182, - [SMALL_STATE(1215)] = 45198, - [SMALL_STATE(1216)] = 45214, - [SMALL_STATE(1217)] = 45228, - [SMALL_STATE(1218)] = 45244, - [SMALL_STATE(1219)] = 45258, - [SMALL_STATE(1220)] = 45272, - [SMALL_STATE(1221)] = 45282, - [SMALL_STATE(1222)] = 45296, - [SMALL_STATE(1223)] = 45312, - [SMALL_STATE(1224)] = 45326, - [SMALL_STATE(1225)] = 45342, - [SMALL_STATE(1226)] = 45358, - [SMALL_STATE(1227)] = 45374, - [SMALL_STATE(1228)] = 45388, - [SMALL_STATE(1229)] = 45404, - [SMALL_STATE(1230)] = 45420, - [SMALL_STATE(1231)] = 45436, - [SMALL_STATE(1232)] = 45452, - [SMALL_STATE(1233)] = 45466, - [SMALL_STATE(1234)] = 45480, - [SMALL_STATE(1235)] = 45496, - [SMALL_STATE(1236)] = 45512, - [SMALL_STATE(1237)] = 45526, - [SMALL_STATE(1238)] = 45542, - [SMALL_STATE(1239)] = 45556, - [SMALL_STATE(1240)] = 45572, - [SMALL_STATE(1241)] = 45588, - [SMALL_STATE(1242)] = 45601, - [SMALL_STATE(1243)] = 45614, - [SMALL_STATE(1244)] = 45627, - [SMALL_STATE(1245)] = 45640, - [SMALL_STATE(1246)] = 45653, - [SMALL_STATE(1247)] = 45666, - [SMALL_STATE(1248)] = 45679, - [SMALL_STATE(1249)] = 45692, - [SMALL_STATE(1250)] = 45705, - [SMALL_STATE(1251)] = 45718, - [SMALL_STATE(1252)] = 45731, - [SMALL_STATE(1253)] = 45740, - [SMALL_STATE(1254)] = 45753, - [SMALL_STATE(1255)] = 45766, - [SMALL_STATE(1256)] = 45779, - [SMALL_STATE(1257)] = 45788, - [SMALL_STATE(1258)] = 45801, - [SMALL_STATE(1259)] = 45814, - [SMALL_STATE(1260)] = 45827, - [SMALL_STATE(1261)] = 45840, - [SMALL_STATE(1262)] = 45849, - [SMALL_STATE(1263)] = 45862, - [SMALL_STATE(1264)] = 45875, - [SMALL_STATE(1265)] = 45888, - [SMALL_STATE(1266)] = 45901, - [SMALL_STATE(1267)] = 45914, - [SMALL_STATE(1268)] = 45927, - [SMALL_STATE(1269)] = 45940, - [SMALL_STATE(1270)] = 45953, - [SMALL_STATE(1271)] = 45966, - [SMALL_STATE(1272)] = 45979, - [SMALL_STATE(1273)] = 45992, - [SMALL_STATE(1274)] = 46005, - [SMALL_STATE(1275)] = 46018, - [SMALL_STATE(1276)] = 46031, - [SMALL_STATE(1277)] = 46044, - [SMALL_STATE(1278)] = 46057, - [SMALL_STATE(1279)] = 46070, - [SMALL_STATE(1280)] = 46079, - [SMALL_STATE(1281)] = 46092, - [SMALL_STATE(1282)] = 46105, - [SMALL_STATE(1283)] = 46114, - [SMALL_STATE(1284)] = 46123, - [SMALL_STATE(1285)] = 46136, - [SMALL_STATE(1286)] = 46149, - [SMALL_STATE(1287)] = 46162, - [SMALL_STATE(1288)] = 46175, - [SMALL_STATE(1289)] = 46188, - [SMALL_STATE(1290)] = 46201, - [SMALL_STATE(1291)] = 46214, - [SMALL_STATE(1292)] = 46227, - [SMALL_STATE(1293)] = 46240, - [SMALL_STATE(1294)] = 46253, - [SMALL_STATE(1295)] = 46266, - [SMALL_STATE(1296)] = 46279, - [SMALL_STATE(1297)] = 46292, - [SMALL_STATE(1298)] = 46305, - [SMALL_STATE(1299)] = 46316, - [SMALL_STATE(1300)] = 46329, - [SMALL_STATE(1301)] = 46342, - [SMALL_STATE(1302)] = 46355, - [SMALL_STATE(1303)] = 46368, - [SMALL_STATE(1304)] = 46377, - [SMALL_STATE(1305)] = 46390, - [SMALL_STATE(1306)] = 46403, - [SMALL_STATE(1307)] = 46416, - [SMALL_STATE(1308)] = 46429, - [SMALL_STATE(1309)] = 46442, - [SMALL_STATE(1310)] = 46455, - [SMALL_STATE(1311)] = 46468, - [SMALL_STATE(1312)] = 46481, - [SMALL_STATE(1313)] = 46494, - [SMALL_STATE(1314)] = 46507, - [SMALL_STATE(1315)] = 46520, - [SMALL_STATE(1316)] = 46533, - [SMALL_STATE(1317)] = 46546, - [SMALL_STATE(1318)] = 46559, - [SMALL_STATE(1319)] = 46572, - [SMALL_STATE(1320)] = 46585, - [SMALL_STATE(1321)] = 46598, - [SMALL_STATE(1322)] = 46611, - [SMALL_STATE(1323)] = 46624, - [SMALL_STATE(1324)] = 46637, - [SMALL_STATE(1325)] = 46650, - [SMALL_STATE(1326)] = 46663, - [SMALL_STATE(1327)] = 46676, - [SMALL_STATE(1328)] = 46689, - [SMALL_STATE(1329)] = 46702, - [SMALL_STATE(1330)] = 46711, - [SMALL_STATE(1331)] = 46724, - [SMALL_STATE(1332)] = 46737, - [SMALL_STATE(1333)] = 46748, - [SMALL_STATE(1334)] = 46761, - [SMALL_STATE(1335)] = 46774, - [SMALL_STATE(1336)] = 46787, - [SMALL_STATE(1337)] = 46796, - [SMALL_STATE(1338)] = 46809, - [SMALL_STATE(1339)] = 46822, - [SMALL_STATE(1340)] = 46835, - [SMALL_STATE(1341)] = 46848, - [SMALL_STATE(1342)] = 46861, - [SMALL_STATE(1343)] = 46871, - [SMALL_STATE(1344)] = 46879, - [SMALL_STATE(1345)] = 46887, - [SMALL_STATE(1346)] = 46897, - [SMALL_STATE(1347)] = 46905, - [SMALL_STATE(1348)] = 46915, - [SMALL_STATE(1349)] = 46923, - [SMALL_STATE(1350)] = 46933, - [SMALL_STATE(1351)] = 46943, - [SMALL_STATE(1352)] = 46953, - [SMALL_STATE(1353)] = 46963, - [SMALL_STATE(1354)] = 46971, - [SMALL_STATE(1355)] = 46981, - [SMALL_STATE(1356)] = 46991, - [SMALL_STATE(1357)] = 46999, - [SMALL_STATE(1358)] = 47007, - [SMALL_STATE(1359)] = 47017, - [SMALL_STATE(1360)] = 47027, - [SMALL_STATE(1361)] = 47037, - [SMALL_STATE(1362)] = 47045, - [SMALL_STATE(1363)] = 47055, - [SMALL_STATE(1364)] = 47065, - [SMALL_STATE(1365)] = 47073, - [SMALL_STATE(1366)] = 47083, - [SMALL_STATE(1367)] = 47093, - [SMALL_STATE(1368)] = 47103, - [SMALL_STATE(1369)] = 47113, - [SMALL_STATE(1370)] = 47123, - [SMALL_STATE(1371)] = 47131, - [SMALL_STATE(1372)] = 47141, - [SMALL_STATE(1373)] = 47149, - [SMALL_STATE(1374)] = 47157, - [SMALL_STATE(1375)] = 47165, - [SMALL_STATE(1376)] = 47175, - [SMALL_STATE(1377)] = 47183, - [SMALL_STATE(1378)] = 47191, - [SMALL_STATE(1379)] = 47199, - [SMALL_STATE(1380)] = 47207, - [SMALL_STATE(1381)] = 47217, - [SMALL_STATE(1382)] = 47227, - [SMALL_STATE(1383)] = 47235, - [SMALL_STATE(1384)] = 47245, - [SMALL_STATE(1385)] = 47255, - [SMALL_STATE(1386)] = 47265, - [SMALL_STATE(1387)] = 47275, - [SMALL_STATE(1388)] = 47285, - [SMALL_STATE(1389)] = 47295, - [SMALL_STATE(1390)] = 47305, - [SMALL_STATE(1391)] = 47313, - [SMALL_STATE(1392)] = 47323, - [SMALL_STATE(1393)] = 47333, - [SMALL_STATE(1394)] = 47343, - [SMALL_STATE(1395)] = 47351, - [SMALL_STATE(1396)] = 47361, - [SMALL_STATE(1397)] = 47369, - [SMALL_STATE(1398)] = 47377, - [SMALL_STATE(1399)] = 47387, - [SMALL_STATE(1400)] = 47397, - [SMALL_STATE(1401)] = 47407, - [SMALL_STATE(1402)] = 47417, - [SMALL_STATE(1403)] = 47427, - [SMALL_STATE(1404)] = 47437, - [SMALL_STATE(1405)] = 47447, - [SMALL_STATE(1406)] = 47457, - [SMALL_STATE(1407)] = 47467, - [SMALL_STATE(1408)] = 47477, - [SMALL_STATE(1409)] = 47484, - [SMALL_STATE(1410)] = 47491, - [SMALL_STATE(1411)] = 47498, - [SMALL_STATE(1412)] = 47505, - [SMALL_STATE(1413)] = 47512, - [SMALL_STATE(1414)] = 47519, - [SMALL_STATE(1415)] = 47526, - [SMALL_STATE(1416)] = 47533, - [SMALL_STATE(1417)] = 47540, - [SMALL_STATE(1418)] = 47547, - [SMALL_STATE(1419)] = 47554, - [SMALL_STATE(1420)] = 47561, - [SMALL_STATE(1421)] = 47568, - [SMALL_STATE(1422)] = 47575, - [SMALL_STATE(1423)] = 47582, - [SMALL_STATE(1424)] = 47589, - [SMALL_STATE(1425)] = 47596, - [SMALL_STATE(1426)] = 47603, - [SMALL_STATE(1427)] = 47610, - [SMALL_STATE(1428)] = 47617, - [SMALL_STATE(1429)] = 47624, - [SMALL_STATE(1430)] = 47631, - [SMALL_STATE(1431)] = 47638, - [SMALL_STATE(1432)] = 47645, - [SMALL_STATE(1433)] = 47652, - [SMALL_STATE(1434)] = 47659, - [SMALL_STATE(1435)] = 47666, - [SMALL_STATE(1436)] = 47673, - [SMALL_STATE(1437)] = 47680, - [SMALL_STATE(1438)] = 47687, - [SMALL_STATE(1439)] = 47694, - [SMALL_STATE(1440)] = 47701, - [SMALL_STATE(1441)] = 47708, - [SMALL_STATE(1442)] = 47715, - [SMALL_STATE(1443)] = 47722, - [SMALL_STATE(1444)] = 47729, - [SMALL_STATE(1445)] = 47736, - [SMALL_STATE(1446)] = 47743, - [SMALL_STATE(1447)] = 47750, - [SMALL_STATE(1448)] = 47757, - [SMALL_STATE(1449)] = 47764, - [SMALL_STATE(1450)] = 47771, - [SMALL_STATE(1451)] = 47778, - [SMALL_STATE(1452)] = 47785, - [SMALL_STATE(1453)] = 47792, - [SMALL_STATE(1454)] = 47799, - [SMALL_STATE(1455)] = 47806, - [SMALL_STATE(1456)] = 47813, - [SMALL_STATE(1457)] = 47820, - [SMALL_STATE(1458)] = 47827, - [SMALL_STATE(1459)] = 47834, - [SMALL_STATE(1460)] = 47841, - [SMALL_STATE(1461)] = 47848, - [SMALL_STATE(1462)] = 47855, - [SMALL_STATE(1463)] = 47862, - [SMALL_STATE(1464)] = 47869, - [SMALL_STATE(1465)] = 47876, - [SMALL_STATE(1466)] = 47883, - [SMALL_STATE(1467)] = 47890, - [SMALL_STATE(1468)] = 47897, - [SMALL_STATE(1469)] = 47904, - [SMALL_STATE(1470)] = 47911, - [SMALL_STATE(1471)] = 47918, - [SMALL_STATE(1472)] = 47925, - [SMALL_STATE(1473)] = 47932, - [SMALL_STATE(1474)] = 47939, - [SMALL_STATE(1475)] = 47946, - [SMALL_STATE(1476)] = 47953, - [SMALL_STATE(1477)] = 47960, - [SMALL_STATE(1478)] = 47967, - [SMALL_STATE(1479)] = 47974, - [SMALL_STATE(1480)] = 47981, - [SMALL_STATE(1481)] = 47988, - [SMALL_STATE(1482)] = 47995, - [SMALL_STATE(1483)] = 48002, - [SMALL_STATE(1484)] = 48009, - [SMALL_STATE(1485)] = 48016, - [SMALL_STATE(1486)] = 48023, - [SMALL_STATE(1487)] = 48030, - [SMALL_STATE(1488)] = 48037, - [SMALL_STATE(1489)] = 48044, - [SMALL_STATE(1490)] = 48051, - [SMALL_STATE(1491)] = 48058, - [SMALL_STATE(1492)] = 48065, - [SMALL_STATE(1493)] = 48072, - [SMALL_STATE(1494)] = 48079, - [SMALL_STATE(1495)] = 48086, - [SMALL_STATE(1496)] = 48093, - [SMALL_STATE(1497)] = 48100, - [SMALL_STATE(1498)] = 48107, - [SMALL_STATE(1499)] = 48114, - [SMALL_STATE(1500)] = 48121, - [SMALL_STATE(1501)] = 48128, - [SMALL_STATE(1502)] = 48135, - [SMALL_STATE(1503)] = 48142, - [SMALL_STATE(1504)] = 48149, - [SMALL_STATE(1505)] = 48156, - [SMALL_STATE(1506)] = 48163, - [SMALL_STATE(1507)] = 48170, - [SMALL_STATE(1508)] = 48177, - [SMALL_STATE(1509)] = 48184, - [SMALL_STATE(1510)] = 48191, - [SMALL_STATE(1511)] = 48198, - [SMALL_STATE(1512)] = 48205, - [SMALL_STATE(1513)] = 48212, - [SMALL_STATE(1514)] = 48219, - [SMALL_STATE(1515)] = 48226, - [SMALL_STATE(1516)] = 48233, - [SMALL_STATE(1517)] = 48240, - [SMALL_STATE(1518)] = 48247, - [SMALL_STATE(1519)] = 48254, - [SMALL_STATE(1520)] = 48261, - [SMALL_STATE(1521)] = 48268, - [SMALL_STATE(1522)] = 48275, - [SMALL_STATE(1523)] = 48282, - [SMALL_STATE(1524)] = 48289, - [SMALL_STATE(1525)] = 48296, - [SMALL_STATE(1526)] = 48303, - [SMALL_STATE(1527)] = 48310, - [SMALL_STATE(1528)] = 48317, - [SMALL_STATE(1529)] = 48324, - [SMALL_STATE(1530)] = 48331, - [SMALL_STATE(1531)] = 48338, - [SMALL_STATE(1532)] = 48345, - [SMALL_STATE(1533)] = 48352, - [SMALL_STATE(1534)] = 48359, - [SMALL_STATE(1535)] = 48366, - [SMALL_STATE(1536)] = 48373, - [SMALL_STATE(1537)] = 48380, - [SMALL_STATE(1538)] = 48387, - [SMALL_STATE(1539)] = 48394, - [SMALL_STATE(1540)] = 48401, - [SMALL_STATE(1541)] = 48408, - [SMALL_STATE(1542)] = 48415, - [SMALL_STATE(1543)] = 48422, - [SMALL_STATE(1544)] = 48429, - [SMALL_STATE(1545)] = 48436, - [SMALL_STATE(1546)] = 48443, - [SMALL_STATE(1547)] = 48450, - [SMALL_STATE(1548)] = 48457, - [SMALL_STATE(1549)] = 48464, - [SMALL_STATE(1550)] = 48471, - [SMALL_STATE(1551)] = 48478, - [SMALL_STATE(1552)] = 48485, - [SMALL_STATE(1553)] = 48492, - [SMALL_STATE(1554)] = 48499, - [SMALL_STATE(1555)] = 48506, - [SMALL_STATE(1556)] = 48513, - [SMALL_STATE(1557)] = 48520, - [SMALL_STATE(1558)] = 48527, - [SMALL_STATE(1559)] = 48534, - [SMALL_STATE(1560)] = 48541, - [SMALL_STATE(1561)] = 48548, - [SMALL_STATE(1562)] = 48555, - [SMALL_STATE(1563)] = 48562, - [SMALL_STATE(1564)] = 48569, - [SMALL_STATE(1565)] = 48576, - [SMALL_STATE(1566)] = 48583, - [SMALL_STATE(1567)] = 48590, - [SMALL_STATE(1568)] = 48597, - [SMALL_STATE(1569)] = 48604, - [SMALL_STATE(1570)] = 48611, - [SMALL_STATE(1571)] = 48618, - [SMALL_STATE(1572)] = 48625, - [SMALL_STATE(1573)] = 48632, - [SMALL_STATE(1574)] = 48639, - [SMALL_STATE(1575)] = 48646, - [SMALL_STATE(1576)] = 48653, - [SMALL_STATE(1577)] = 48660, - [SMALL_STATE(1578)] = 48667, - [SMALL_STATE(1579)] = 48674, - [SMALL_STATE(1580)] = 48681, - [SMALL_STATE(1581)] = 48688, - [SMALL_STATE(1582)] = 48695, - [SMALL_STATE(1583)] = 48702, - [SMALL_STATE(1584)] = 48709, - [SMALL_STATE(1585)] = 48716, - [SMALL_STATE(1586)] = 48723, - [SMALL_STATE(1587)] = 48730, - [SMALL_STATE(1588)] = 48737, - [SMALL_STATE(1589)] = 48744, - [SMALL_STATE(1590)] = 48751, - [SMALL_STATE(1591)] = 48758, - [SMALL_STATE(1592)] = 48765, - [SMALL_STATE(1593)] = 48772, - [SMALL_STATE(1594)] = 48779, - [SMALL_STATE(1595)] = 48786, - [SMALL_STATE(1596)] = 48793, - [SMALL_STATE(1597)] = 48800, - [SMALL_STATE(1598)] = 48807, - [SMALL_STATE(1599)] = 48814, - [SMALL_STATE(1600)] = 48821, - [SMALL_STATE(1601)] = 48828, - [SMALL_STATE(1602)] = 48835, - [SMALL_STATE(1603)] = 48842, - [SMALL_STATE(1604)] = 48849, - [SMALL_STATE(1605)] = 48856, - [SMALL_STATE(1606)] = 48863, - [SMALL_STATE(1607)] = 48870, - [SMALL_STATE(1608)] = 48877, - [SMALL_STATE(1609)] = 48884, - [SMALL_STATE(1610)] = 48891, - [SMALL_STATE(1611)] = 48898, - [SMALL_STATE(1612)] = 48905, - [SMALL_STATE(1613)] = 48912, - [SMALL_STATE(1614)] = 48919, - [SMALL_STATE(1615)] = 48926, - [SMALL_STATE(1616)] = 48933, + [SMALL_STATE(504)] = 0, + [SMALL_STATE(505)] = 118, + [SMALL_STATE(506)] = 230, + [SMALL_STATE(507)] = 348, + [SMALL_STATE(508)] = 466, + [SMALL_STATE(509)] = 578, + [SMALL_STATE(510)] = 696, + [SMALL_STATE(511)] = 808, + [SMALL_STATE(512)] = 926, + [SMALL_STATE(513)] = 1044, + [SMALL_STATE(514)] = 1156, + [SMALL_STATE(515)] = 1268, + [SMALL_STATE(516)] = 1380, + [SMALL_STATE(517)] = 1498, + [SMALL_STATE(518)] = 1610, + [SMALL_STATE(519)] = 1722, + [SMALL_STATE(520)] = 1846, + [SMALL_STATE(521)] = 1958, + [SMALL_STATE(522)] = 2076, + [SMALL_STATE(523)] = 2188, + [SMALL_STATE(524)] = 2305, + [SMALL_STATE(525)] = 2419, + [SMALL_STATE(526)] = 2533, + [SMALL_STATE(527)] = 2646, + [SMALL_STATE(528)] = 2757, + [SMALL_STATE(529)] = 2870, + [SMALL_STATE(530)] = 2983, + [SMALL_STATE(531)] = 3096, + [SMALL_STATE(532)] = 3209, + [SMALL_STATE(533)] = 3316, + [SMALL_STATE(534)] = 3429, + [SMALL_STATE(535)] = 3542, + [SMALL_STATE(536)] = 3655, + [SMALL_STATE(537)] = 3768, + [SMALL_STATE(538)] = 3881, + [SMALL_STATE(539)] = 3961, + [SMALL_STATE(540)] = 4043, + [SMALL_STATE(541)] = 4125, + [SMALL_STATE(542)] = 4207, + [SMALL_STATE(543)] = 4289, + [SMALL_STATE(544)] = 4369, + [SMALL_STATE(545)] = 4449, + [SMALL_STATE(546)] = 4531, + [SMALL_STATE(547)] = 4611, + [SMALL_STATE(548)] = 4691, + [SMALL_STATE(549)] = 4796, + [SMALL_STATE(550)] = 4873, + [SMALL_STATE(551)] = 4976, + [SMALL_STATE(552)] = 5079, + [SMALL_STATE(553)] = 5182, + [SMALL_STATE(554)] = 5285, + [SMALL_STATE(555)] = 5388, + [SMALL_STATE(556)] = 5491, + [SMALL_STATE(557)] = 5593, + [SMALL_STATE(558)] = 5701, + [SMALL_STATE(559)] = 5803, + [SMALL_STATE(560)] = 5902, + [SMALL_STATE(561)] = 6001, + [SMALL_STATE(562)] = 6100, + [SMALL_STATE(563)] = 6199, + [SMALL_STATE(564)] = 6298, + [SMALL_STATE(565)] = 6397, + [SMALL_STATE(566)] = 6496, + [SMALL_STATE(567)] = 6595, + [SMALL_STATE(568)] = 6694, + [SMALL_STATE(569)] = 6793, + [SMALL_STATE(570)] = 6892, + [SMALL_STATE(571)] = 6991, + [SMALL_STATE(572)] = 7090, + [SMALL_STATE(573)] = 7189, + [SMALL_STATE(574)] = 7288, + [SMALL_STATE(575)] = 7387, + [SMALL_STATE(576)] = 7486, + [SMALL_STATE(577)] = 7585, + [SMALL_STATE(578)] = 7684, + [SMALL_STATE(579)] = 7783, + [SMALL_STATE(580)] = 7882, + [SMALL_STATE(581)] = 7981, + [SMALL_STATE(582)] = 8080, + [SMALL_STATE(583)] = 8179, + [SMALL_STATE(584)] = 8278, + [SMALL_STATE(585)] = 8377, + [SMALL_STATE(586)] = 8476, + [SMALL_STATE(587)] = 8575, + [SMALL_STATE(588)] = 8674, + [SMALL_STATE(589)] = 8773, + [SMALL_STATE(590)] = 8872, + [SMALL_STATE(591)] = 8971, + [SMALL_STATE(592)] = 9070, + [SMALL_STATE(593)] = 9169, + [SMALL_STATE(594)] = 9268, + [SMALL_STATE(595)] = 9367, + [SMALL_STATE(596)] = 9466, + [SMALL_STATE(597)] = 9565, + [SMALL_STATE(598)] = 9664, + [SMALL_STATE(599)] = 9763, + [SMALL_STATE(600)] = 9862, + [SMALL_STATE(601)] = 9961, + [SMALL_STATE(602)] = 10060, + [SMALL_STATE(603)] = 10159, + [SMALL_STATE(604)] = 10258, + [SMALL_STATE(605)] = 10357, + [SMALL_STATE(606)] = 10456, + [SMALL_STATE(607)] = 10555, + [SMALL_STATE(608)] = 10654, + [SMALL_STATE(609)] = 10753, + [SMALL_STATE(610)] = 10852, + [SMALL_STATE(611)] = 10951, + [SMALL_STATE(612)] = 11050, + [SMALL_STATE(613)] = 11149, + [SMALL_STATE(614)] = 11248, + [SMALL_STATE(615)] = 11347, + [SMALL_STATE(616)] = 11446, + [SMALL_STATE(617)] = 11542, + [SMALL_STATE(618)] = 11638, + [SMALL_STATE(619)] = 11734, + [SMALL_STATE(620)] = 11830, + [SMALL_STATE(621)] = 11926, + [SMALL_STATE(622)] = 12022, + [SMALL_STATE(623)] = 12118, + [SMALL_STATE(624)] = 12214, + [SMALL_STATE(625)] = 12310, + [SMALL_STATE(626)] = 12406, + [SMALL_STATE(627)] = 12502, + [SMALL_STATE(628)] = 12598, + [SMALL_STATE(629)] = 12694, + [SMALL_STATE(630)] = 12790, + [SMALL_STATE(631)] = 12886, + [SMALL_STATE(632)] = 12982, + [SMALL_STATE(633)] = 13078, + [SMALL_STATE(634)] = 13174, + [SMALL_STATE(635)] = 13270, + [SMALL_STATE(636)] = 13366, + [SMALL_STATE(637)] = 13462, + [SMALL_STATE(638)] = 13558, + [SMALL_STATE(639)] = 13651, + [SMALL_STATE(640)] = 13744, + [SMALL_STATE(641)] = 13837, + [SMALL_STATE(642)] = 13930, + [SMALL_STATE(643)] = 14023, + [SMALL_STATE(644)] = 14116, + [SMALL_STATE(645)] = 14209, + [SMALL_STATE(646)] = 14302, + [SMALL_STATE(647)] = 14395, + [SMALL_STATE(648)] = 14488, + [SMALL_STATE(649)] = 14581, + [SMALL_STATE(650)] = 14674, + [SMALL_STATE(651)] = 14767, + [SMALL_STATE(652)] = 14860, + [SMALL_STATE(653)] = 14953, + [SMALL_STATE(654)] = 15046, + [SMALL_STATE(655)] = 15139, + [SMALL_STATE(656)] = 15232, + [SMALL_STATE(657)] = 15325, + [SMALL_STATE(658)] = 15418, + [SMALL_STATE(659)] = 15511, + [SMALL_STATE(660)] = 15604, + [SMALL_STATE(661)] = 15697, + [SMALL_STATE(662)] = 15790, + [SMALL_STATE(663)] = 15883, + [SMALL_STATE(664)] = 15976, + [SMALL_STATE(665)] = 16069, + [SMALL_STATE(666)] = 16162, + [SMALL_STATE(667)] = 16255, + [SMALL_STATE(668)] = 16348, + [SMALL_STATE(669)] = 16441, + [SMALL_STATE(670)] = 16534, + [SMALL_STATE(671)] = 16627, + [SMALL_STATE(672)] = 16720, + [SMALL_STATE(673)] = 16813, + [SMALL_STATE(674)] = 16906, + [SMALL_STATE(675)] = 16999, + [SMALL_STATE(676)] = 17092, + [SMALL_STATE(677)] = 17185, + [SMALL_STATE(678)] = 17278, + [SMALL_STATE(679)] = 17371, + [SMALL_STATE(680)] = 17464, + [SMALL_STATE(681)] = 17557, + [SMALL_STATE(682)] = 17650, + [SMALL_STATE(683)] = 17743, + [SMALL_STATE(684)] = 17836, + [SMALL_STATE(685)] = 17929, + [SMALL_STATE(686)] = 18022, + [SMALL_STATE(687)] = 18115, + [SMALL_STATE(688)] = 18208, + [SMALL_STATE(689)] = 18301, + [SMALL_STATE(690)] = 18394, + [SMALL_STATE(691)] = 18487, + [SMALL_STATE(692)] = 18580, + [SMALL_STATE(693)] = 18673, + [SMALL_STATE(694)] = 18766, + [SMALL_STATE(695)] = 18859, + [SMALL_STATE(696)] = 18952, + [SMALL_STATE(697)] = 19045, + [SMALL_STATE(698)] = 19138, + [SMALL_STATE(699)] = 19231, + [SMALL_STATE(700)] = 19324, + [SMALL_STATE(701)] = 19417, + [SMALL_STATE(702)] = 19510, + [SMALL_STATE(703)] = 19603, + [SMALL_STATE(704)] = 19696, + [SMALL_STATE(705)] = 19789, + [SMALL_STATE(706)] = 19882, + [SMALL_STATE(707)] = 19975, + [SMALL_STATE(708)] = 20068, + [SMALL_STATE(709)] = 20161, + [SMALL_STATE(710)] = 20254, + [SMALL_STATE(711)] = 20347, + [SMALL_STATE(712)] = 20440, + [SMALL_STATE(713)] = 20533, + [SMALL_STATE(714)] = 20626, + [SMALL_STATE(715)] = 20719, + [SMALL_STATE(716)] = 20812, + [SMALL_STATE(717)] = 20876, + [SMALL_STATE(718)] = 20940, + [SMALL_STATE(719)] = 21004, + [SMALL_STATE(720)] = 21060, + [SMALL_STATE(721)] = 21116, + [SMALL_STATE(722)] = 21184, + [SMALL_STATE(723)] = 21271, + [SMALL_STATE(724)] = 21355, + [SMALL_STATE(725)] = 21407, + [SMALL_STATE(726)] = 21459, + [SMALL_STATE(727)] = 21511, + [SMALL_STATE(728)] = 21562, + [SMALL_STATE(729)] = 21612, + [SMALL_STATE(730)] = 21662, + [SMALL_STATE(731)] = 21712, + [SMALL_STATE(732)] = 21762, + [SMALL_STATE(733)] = 21812, + [SMALL_STATE(734)] = 21862, + [SMALL_STATE(735)] = 21912, + [SMALL_STATE(736)] = 21972, + [SMALL_STATE(737)] = 22022, + [SMALL_STATE(738)] = 22082, + [SMALL_STATE(739)] = 22132, + [SMALL_STATE(740)] = 22182, + [SMALL_STATE(741)] = 22232, + [SMALL_STATE(742)] = 22282, + [SMALL_STATE(743)] = 22340, + [SMALL_STATE(744)] = 22424, + [SMALL_STATE(745)] = 22474, + [SMALL_STATE(746)] = 22524, + [SMALL_STATE(747)] = 22608, + [SMALL_STATE(748)] = 22658, + [SMALL_STATE(749)] = 22708, + [SMALL_STATE(750)] = 22768, + [SMALL_STATE(751)] = 22818, + [SMALL_STATE(752)] = 22882, + [SMALL_STATE(753)] = 22932, + [SMALL_STATE(754)] = 22982, + [SMALL_STATE(755)] = 23048, + [SMALL_STATE(756)] = 23118, + [SMALL_STATE(757)] = 23190, + [SMALL_STATE(758)] = 23264, + [SMALL_STATE(759)] = 23340, + [SMALL_STATE(760)] = 23418, + [SMALL_STATE(761)] = 23498, + [SMALL_STATE(762)] = 23560, + [SMALL_STATE(763)] = 23626, + [SMALL_STATE(764)] = 23708, + [SMALL_STATE(765)] = 23758, + [SMALL_STATE(766)] = 23808, + [SMALL_STATE(767)] = 23858, + [SMALL_STATE(768)] = 23908, + [SMALL_STATE(769)] = 23958, + [SMALL_STATE(770)] = 24008, + [SMALL_STATE(771)] = 24058, + [SMALL_STATE(772)] = 24108, + [SMALL_STATE(773)] = 24168, + [SMALL_STATE(774)] = 24218, + [SMALL_STATE(775)] = 24268, + [SMALL_STATE(776)] = 24345, + [SMALL_STATE(777)] = 24422, + [SMALL_STATE(778)] = 24475, + [SMALL_STATE(779)] = 24528, + [SMALL_STATE(780)] = 24605, + [SMALL_STATE(781)] = 24682, + [SMALL_STATE(782)] = 24759, + [SMALL_STATE(783)] = 24819, + [SMALL_STATE(784)] = 24893, + [SMALL_STATE(785)] = 24940, + [SMALL_STATE(786)] = 24993, + [SMALL_STATE(787)] = 25046, + [SMALL_STATE(788)] = 25099, + [SMALL_STATE(789)] = 25152, + [SMALL_STATE(790)] = 25205, + [SMALL_STATE(791)] = 25283, + [SMALL_STATE(792)] = 25363, + [SMALL_STATE(793)] = 25439, + [SMALL_STATE(794)] = 25495, + [SMALL_STATE(795)] = 25569, + [SMALL_STATE(796)] = 25649, + [SMALL_STATE(797)] = 25719, + [SMALL_STATE(798)] = 25791, + [SMALL_STATE(799)] = 25849, + [SMALL_STATE(800)] = 25905, + [SMALL_STATE(801)] = 25961, + [SMALL_STATE(802)] = 26017, + [SMALL_STATE(803)] = 26079, + [SMALL_STATE(804)] = 26139, + [SMALL_STATE(805)] = 26193, + [SMALL_STATE(806)] = 26261, + [SMALL_STATE(807)] = 26323, + [SMALL_STATE(808)] = 26401, + [SMALL_STATE(809)] = 26467, + [SMALL_STATE(810)] = 26512, + [SMALL_STATE(811)] = 26561, + [SMALL_STATE(812)] = 26606, + [SMALL_STATE(813)] = 26651, + [SMALL_STATE(814)] = 26695, + [SMALL_STATE(815)] = 26739, + [SMALL_STATE(816)] = 26783, + [SMALL_STATE(817)] = 26827, + [SMALL_STATE(818)] = 26871, + [SMALL_STATE(819)] = 26915, + [SMALL_STATE(820)] = 26959, + [SMALL_STATE(821)] = 27003, + [SMALL_STATE(822)] = 27047, + [SMALL_STATE(823)] = 27091, + [SMALL_STATE(824)] = 27135, + [SMALL_STATE(825)] = 27179, + [SMALL_STATE(826)] = 27223, + [SMALL_STATE(827)] = 27267, + [SMALL_STATE(828)] = 27311, + [SMALL_STATE(829)] = 27355, + [SMALL_STATE(830)] = 27399, + [SMALL_STATE(831)] = 27443, + [SMALL_STATE(832)] = 27487, + [SMALL_STATE(833)] = 27530, + [SMALL_STATE(834)] = 27572, + [SMALL_STATE(835)] = 27614, + [SMALL_STATE(836)] = 27656, + [SMALL_STATE(837)] = 27698, + [SMALL_STATE(838)] = 27740, + [SMALL_STATE(839)] = 27782, + [SMALL_STATE(840)] = 27824, + [SMALL_STATE(841)] = 27866, + [SMALL_STATE(842)] = 27908, + [SMALL_STATE(843)] = 27950, + [SMALL_STATE(844)] = 27992, + [SMALL_STATE(845)] = 28034, + [SMALL_STATE(846)] = 28076, + [SMALL_STATE(847)] = 28118, + [SMALL_STATE(848)] = 28160, + [SMALL_STATE(849)] = 28202, + [SMALL_STATE(850)] = 28244, + [SMALL_STATE(851)] = 28286, + [SMALL_STATE(852)] = 28328, + [SMALL_STATE(853)] = 28370, + [SMALL_STATE(854)] = 28412, + [SMALL_STATE(855)] = 28453, + [SMALL_STATE(856)] = 28494, + [SMALL_STATE(857)] = 28535, + [SMALL_STATE(858)] = 28576, + [SMALL_STATE(859)] = 28617, + [SMALL_STATE(860)] = 28669, + [SMALL_STATE(861)] = 28709, + [SMALL_STATE(862)] = 28749, + [SMALL_STATE(863)] = 28789, + [SMALL_STATE(864)] = 28829, + [SMALL_STATE(865)] = 28869, + [SMALL_STATE(866)] = 28921, + [SMALL_STATE(867)] = 28961, + [SMALL_STATE(868)] = 29001, + [SMALL_STATE(869)] = 29041, + [SMALL_STATE(870)] = 29081, + [SMALL_STATE(871)] = 29121, + [SMALL_STATE(872)] = 29161, + [SMALL_STATE(873)] = 29201, + [SMALL_STATE(874)] = 29241, + [SMALL_STATE(875)] = 29281, + [SMALL_STATE(876)] = 29321, + [SMALL_STATE(877)] = 29361, + [SMALL_STATE(878)] = 29401, + [SMALL_STATE(879)] = 29441, + [SMALL_STATE(880)] = 29481, + [SMALL_STATE(881)] = 29521, + [SMALL_STATE(882)] = 29561, + [SMALL_STATE(883)] = 29601, + [SMALL_STATE(884)] = 29641, + [SMALL_STATE(885)] = 29681, + [SMALL_STATE(886)] = 29721, + [SMALL_STATE(887)] = 29761, + [SMALL_STATE(888)] = 29801, + [SMALL_STATE(889)] = 29845, + [SMALL_STATE(890)] = 29889, + [SMALL_STATE(891)] = 29929, + [SMALL_STATE(892)] = 29969, + [SMALL_STATE(893)] = 30013, + [SMALL_STATE(894)] = 30053, + [SMALL_STATE(895)] = 30093, + [SMALL_STATE(896)] = 30137, + [SMALL_STATE(897)] = 30189, + [SMALL_STATE(898)] = 30229, + [SMALL_STATE(899)] = 30269, + [SMALL_STATE(900)] = 30321, + [SMALL_STATE(901)] = 30361, + [SMALL_STATE(902)] = 30401, + [SMALL_STATE(903)] = 30441, + [SMALL_STATE(904)] = 30485, + [SMALL_STATE(905)] = 30525, + [SMALL_STATE(906)] = 30569, + [SMALL_STATE(907)] = 30609, + [SMALL_STATE(908)] = 30664, + [SMALL_STATE(909)] = 30717, + [SMALL_STATE(910)] = 30774, + [SMALL_STATE(911)] = 30845, + [SMALL_STATE(912)] = 30918, + [SMALL_STATE(913)] = 30983, + [SMALL_STATE(914)] = 31050, + [SMALL_STATE(915)] = 31111, + [SMALL_STATE(916)] = 31174, + [SMALL_STATE(917)] = 31231, + [SMALL_STATE(918)] = 31300, + [SMALL_STATE(919)] = 31367, + [SMALL_STATE(920)] = 31440, + [SMALL_STATE(921)] = 31487, + [SMALL_STATE(922)] = 31549, + [SMALL_STATE(923)] = 31600, + [SMALL_STATE(924)] = 31659, + [SMALL_STATE(925)] = 31718, + [SMALL_STATE(926)] = 31769, + [SMALL_STATE(927)] = 31828, + [SMALL_STATE(928)] = 31879, + [SMALL_STATE(929)] = 31938, + [SMALL_STATE(930)] = 31997, + [SMALL_STATE(931)] = 32072, + [SMALL_STATE(932)] = 32123, + [SMALL_STATE(933)] = 32182, + [SMALL_STATE(934)] = 32241, + [SMALL_STATE(935)] = 32300, + [SMALL_STATE(936)] = 32359, + [SMALL_STATE(937)] = 32432, + [SMALL_STATE(938)] = 32507, + [SMALL_STATE(939)] = 32566, + [SMALL_STATE(940)] = 32641, + [SMALL_STATE(941)] = 32716, + [SMALL_STATE(942)] = 32775, + [SMALL_STATE(943)] = 32826, + [SMALL_STATE(944)] = 32885, + [SMALL_STATE(945)] = 32957, + [SMALL_STATE(946)] = 33029, + [SMALL_STATE(947)] = 33099, + [SMALL_STATE(948)] = 33171, + [SMALL_STATE(949)] = 33243, + [SMALL_STATE(950)] = 33315, + [SMALL_STATE(951)] = 33387, + [SMALL_STATE(952)] = 33459, + [SMALL_STATE(953)] = 33529, + [SMALL_STATE(954)] = 33569, + [SMALL_STATE(955)] = 33609, + [SMALL_STATE(956)] = 33681, + [SMALL_STATE(957)] = 33753, + [SMALL_STATE(958)] = 33825, + [SMALL_STATE(959)] = 33897, + [SMALL_STATE(960)] = 33969, + [SMALL_STATE(961)] = 34011, + [SMALL_STATE(962)] = 34083, + [SMALL_STATE(963)] = 34155, + [SMALL_STATE(964)] = 34227, + [SMALL_STATE(965)] = 34267, + [SMALL_STATE(966)] = 34339, + [SMALL_STATE(967)] = 34411, + [SMALL_STATE(968)] = 34483, + [SMALL_STATE(969)] = 34555, + [SMALL_STATE(970)] = 34627, + [SMALL_STATE(971)] = 34699, + [SMALL_STATE(972)] = 34771, + [SMALL_STATE(973)] = 34843, + [SMALL_STATE(974)] = 34915, + [SMALL_STATE(975)] = 34955, + [SMALL_STATE(976)] = 35027, + [SMALL_STATE(977)] = 35097, + [SMALL_STATE(978)] = 35169, + [SMALL_STATE(979)] = 35241, + [SMALL_STATE(980)] = 35313, + [SMALL_STATE(981)] = 35385, + [SMALL_STATE(982)] = 35457, + [SMALL_STATE(983)] = 35529, + [SMALL_STATE(984)] = 35601, + [SMALL_STATE(985)] = 35641, + [SMALL_STATE(986)] = 35713, + [SMALL_STATE(987)] = 35785, + [SMALL_STATE(988)] = 35857, + [SMALL_STATE(989)] = 35929, + [SMALL_STATE(990)] = 36001, + [SMALL_STATE(991)] = 36073, + [SMALL_STATE(992)] = 36145, + [SMALL_STATE(993)] = 36217, + [SMALL_STATE(994)] = 36289, + [SMALL_STATE(995)] = 36361, + [SMALL_STATE(996)] = 36433, + [SMALL_STATE(997)] = 36503, + [SMALL_STATE(998)] = 36575, + [SMALL_STATE(999)] = 36647, + [SMALL_STATE(1000)] = 36719, + [SMALL_STATE(1001)] = 36789, + [SMALL_STATE(1002)] = 36859, + [SMALL_STATE(1003)] = 36931, + [SMALL_STATE(1004)] = 37003, + [SMALL_STATE(1005)] = 37075, + [SMALL_STATE(1006)] = 37147, + [SMALL_STATE(1007)] = 37219, + [SMALL_STATE(1008)] = 37291, + [SMALL_STATE(1009)] = 37363, + [SMALL_STATE(1010)] = 37435, + [SMALL_STATE(1011)] = 37507, + [SMALL_STATE(1012)] = 37579, + [SMALL_STATE(1013)] = 37649, + [SMALL_STATE(1014)] = 37721, + [SMALL_STATE(1015)] = 37793, + [SMALL_STATE(1016)] = 37865, + [SMALL_STATE(1017)] = 37937, + [SMALL_STATE(1018)] = 38009, + [SMALL_STATE(1019)] = 38081, + [SMALL_STATE(1020)] = 38150, + [SMALL_STATE(1021)] = 38219, + [SMALL_STATE(1022)] = 38288, + [SMALL_STATE(1023)] = 38343, + [SMALL_STATE(1024)] = 38412, + [SMALL_STATE(1025)] = 38465, + [SMALL_STATE(1026)] = 38534, + [SMALL_STATE(1027)] = 38603, + [SMALL_STATE(1028)] = 38672, + [SMALL_STATE(1029)] = 38741, + [SMALL_STATE(1030)] = 38796, + [SMALL_STATE(1031)] = 38851, + [SMALL_STATE(1032)] = 38920, + [SMALL_STATE(1033)] = 38975, + [SMALL_STATE(1034)] = 39044, + [SMALL_STATE(1035)] = 39113, + [SMALL_STATE(1036)] = 39182, + [SMALL_STATE(1037)] = 39251, + [SMALL_STATE(1038)] = 39320, + [SMALL_STATE(1039)] = 39389, + [SMALL_STATE(1040)] = 39458, + [SMALL_STATE(1041)] = 39527, + [SMALL_STATE(1042)] = 39596, + [SMALL_STATE(1043)] = 39665, + [SMALL_STATE(1044)] = 39734, + [SMALL_STATE(1045)] = 39801, + [SMALL_STATE(1046)] = 39870, + [SMALL_STATE(1047)] = 39919, + [SMALL_STATE(1048)] = 39984, + [SMALL_STATE(1049)] = 40047, + [SMALL_STATE(1050)] = 40110, + [SMALL_STATE(1051)] = 40171, + [SMALL_STATE(1052)] = 40230, + [SMALL_STATE(1053)] = 40287, + [SMALL_STATE(1054)] = 40356, + [SMALL_STATE(1055)] = 40425, + [SMALL_STATE(1056)] = 40478, + [SMALL_STATE(1057)] = 40529, + [SMALL_STATE(1058)] = 40598, + [SMALL_STATE(1059)] = 40667, + [SMALL_STATE(1060)] = 40736, + [SMALL_STATE(1061)] = 40788, + [SMALL_STATE(1062)] = 40822, + [SMALL_STATE(1063)] = 40874, + [SMALL_STATE(1064)] = 40926, + [SMALL_STATE(1065)] = 40962, + [SMALL_STATE(1066)] = 41014, + [SMALL_STATE(1067)] = 41066, + [SMALL_STATE(1068)] = 41104, + [SMALL_STATE(1069)] = 41156, + [SMALL_STATE(1070)] = 41190, + [SMALL_STATE(1071)] = 41224, + [SMALL_STATE(1072)] = 41258, + [SMALL_STATE(1073)] = 41292, + [SMALL_STATE(1074)] = 41326, + [SMALL_STATE(1075)] = 41378, + [SMALL_STATE(1076)] = 41412, + [SMALL_STATE(1077)] = 41446, + [SMALL_STATE(1078)] = 41480, + [SMALL_STATE(1079)] = 41532, + [SMALL_STATE(1080)] = 41566, + [SMALL_STATE(1081)] = 41618, + [SMALL_STATE(1082)] = 41652, + [SMALL_STATE(1083)] = 41686, + [SMALL_STATE(1084)] = 41720, + [SMALL_STATE(1085)] = 41754, + [SMALL_STATE(1086)] = 41788, + [SMALL_STATE(1087)] = 41822, + [SMALL_STATE(1088)] = 41856, + [SMALL_STATE(1089)] = 41890, + [SMALL_STATE(1090)] = 41924, + [SMALL_STATE(1091)] = 41958, + [SMALL_STATE(1092)] = 42010, + [SMALL_STATE(1093)] = 42044, + [SMALL_STATE(1094)] = 42096, + [SMALL_STATE(1095)] = 42130, + [SMALL_STATE(1096)] = 42182, + [SMALL_STATE(1097)] = 42220, + [SMALL_STATE(1098)] = 42266, + [SMALL_STATE(1099)] = 42312, + [SMALL_STATE(1100)] = 42358, + [SMALL_STATE(1101)] = 42392, + [SMALL_STATE(1102)] = 42438, + [SMALL_STATE(1103)] = 42484, + [SMALL_STATE(1104)] = 42530, + [SMALL_STATE(1105)] = 42585, + [SMALL_STATE(1106)] = 42628, + [SMALL_STATE(1107)] = 42671, + [SMALL_STATE(1108)] = 42714, + [SMALL_STATE(1109)] = 42757, + [SMALL_STATE(1110)] = 42800, + [SMALL_STATE(1111)] = 42843, + [SMALL_STATE(1112)] = 42886, + [SMALL_STATE(1113)] = 42929, + [SMALL_STATE(1114)] = 42972, + [SMALL_STATE(1115)] = 43015, + [SMALL_STATE(1116)] = 43058, + [SMALL_STATE(1117)] = 43113, + [SMALL_STATE(1118)] = 43156, + [SMALL_STATE(1119)] = 43199, + [SMALL_STATE(1120)] = 43232, + [SMALL_STATE(1121)] = 43275, + [SMALL_STATE(1122)] = 43318, + [SMALL_STATE(1123)] = 43361, + [SMALL_STATE(1124)] = 43404, + [SMALL_STATE(1125)] = 43447, + [SMALL_STATE(1126)] = 43490, + [SMALL_STATE(1127)] = 43527, + [SMALL_STATE(1128)] = 43570, + [SMALL_STATE(1129)] = 43613, + [SMALL_STATE(1130)] = 43656, + [SMALL_STATE(1131)] = 43699, + [SMALL_STATE(1132)] = 43742, + [SMALL_STATE(1133)] = 43785, + [SMALL_STATE(1134)] = 43828, + [SMALL_STATE(1135)] = 43871, + [SMALL_STATE(1136)] = 43914, + [SMALL_STATE(1137)] = 43957, + [SMALL_STATE(1138)] = 44000, + [SMALL_STATE(1139)] = 44043, + [SMALL_STATE(1140)] = 44083, + [SMALL_STATE(1141)] = 44123, + [SMALL_STATE(1142)] = 44163, + [SMALL_STATE(1143)] = 44203, + [SMALL_STATE(1144)] = 44243, + [SMALL_STATE(1145)] = 44283, + [SMALL_STATE(1146)] = 44323, + [SMALL_STATE(1147)] = 44351, + [SMALL_STATE(1148)] = 44391, + [SMALL_STATE(1149)] = 44441, + [SMALL_STATE(1150)] = 44481, + [SMALL_STATE(1151)] = 44521, + [SMALL_STATE(1152)] = 44561, + [SMALL_STATE(1153)] = 44589, + [SMALL_STATE(1154)] = 44629, + [SMALL_STATE(1155)] = 44669, + [SMALL_STATE(1156)] = 44709, + [SMALL_STATE(1157)] = 44749, + [SMALL_STATE(1158)] = 44777, + [SMALL_STATE(1159)] = 44805, + [SMALL_STATE(1160)] = 44851, + [SMALL_STATE(1161)] = 44885, + [SMALL_STATE(1162)] = 44925, + [SMALL_STATE(1163)] = 44961, + [SMALL_STATE(1164)] = 45001, + [SMALL_STATE(1165)] = 45041, + [SMALL_STATE(1166)] = 45083, + [SMALL_STATE(1167)] = 45127, + [SMALL_STATE(1168)] = 45167, + [SMALL_STATE(1169)] = 45213, + [SMALL_STATE(1170)] = 45241, + [SMALL_STATE(1171)] = 45289, + [SMALL_STATE(1172)] = 45317, + [SMALL_STATE(1173)] = 45357, + [SMALL_STATE(1174)] = 45389, + [SMALL_STATE(1175)] = 45417, + [SMALL_STATE(1176)] = 45457, + [SMALL_STATE(1177)] = 45497, + [SMALL_STATE(1178)] = 45525, + [SMALL_STATE(1179)] = 45565, + [SMALL_STATE(1180)] = 45593, + [SMALL_STATE(1181)] = 45633, + [SMALL_STATE(1182)] = 45673, + [SMALL_STATE(1183)] = 45709, + [SMALL_STATE(1184)] = 45737, + [SMALL_STATE(1185)] = 45777, + [SMALL_STATE(1186)] = 45817, + [SMALL_STATE(1187)] = 45857, + [SMALL_STATE(1188)] = 45897, + [SMALL_STATE(1189)] = 45937, + [SMALL_STATE(1190)] = 45977, + [SMALL_STATE(1191)] = 46017, + [SMALL_STATE(1192)] = 46065, + [SMALL_STATE(1193)] = 46105, + [SMALL_STATE(1194)] = 46145, + [SMALL_STATE(1195)] = 46185, + [SMALL_STATE(1196)] = 46225, + [SMALL_STATE(1197)] = 46265, + [SMALL_STATE(1198)] = 46300, + [SMALL_STATE(1199)] = 46349, + [SMALL_STATE(1200)] = 46394, + [SMALL_STATE(1201)] = 46421, + [SMALL_STATE(1202)] = 46448, + [SMALL_STATE(1203)] = 46475, + [SMALL_STATE(1204)] = 46502, + [SMALL_STATE(1205)] = 46539, + [SMALL_STATE(1206)] = 46566, + [SMALL_STATE(1207)] = 46595, + [SMALL_STATE(1208)] = 46622, + [SMALL_STATE(1209)] = 46655, + [SMALL_STATE(1210)] = 46700, + [SMALL_STATE(1211)] = 46727, + [SMALL_STATE(1212)] = 46754, + [SMALL_STATE(1213)] = 46803, + [SMALL_STATE(1214)] = 46848, + [SMALL_STATE(1215)] = 46879, + [SMALL_STATE(1216)] = 46906, + [SMALL_STATE(1217)] = 46951, + [SMALL_STATE(1218)] = 46996, + [SMALL_STATE(1219)] = 47041, + [SMALL_STATE(1220)] = 47084, + [SMALL_STATE(1221)] = 47125, + [SMALL_STATE(1222)] = 47164, + [SMALL_STATE(1223)] = 47209, + [SMALL_STATE(1224)] = 47254, + [SMALL_STATE(1225)] = 47299, + [SMALL_STATE(1226)] = 47326, + [SMALL_STATE(1227)] = 47371, + [SMALL_STATE(1228)] = 47416, + [SMALL_STATE(1229)] = 47461, + [SMALL_STATE(1230)] = 47486, + [SMALL_STATE(1231)] = 47511, + [SMALL_STATE(1232)] = 47539, + [SMALL_STATE(1233)] = 47577, + [SMALL_STATE(1234)] = 47609, + [SMALL_STATE(1235)] = 47641, + [SMALL_STATE(1236)] = 47673, + [SMALL_STATE(1237)] = 47705, + [SMALL_STATE(1238)] = 47737, + [SMALL_STATE(1239)] = 47775, + [SMALL_STATE(1240)] = 47813, + [SMALL_STATE(1241)] = 47851, + [SMALL_STATE(1242)] = 47883, + [SMALL_STATE(1243)] = 47915, + [SMALL_STATE(1244)] = 47947, + [SMALL_STATE(1245)] = 47979, + [SMALL_STATE(1246)] = 48011, + [SMALL_STATE(1247)] = 48043, + [SMALL_STATE(1248)] = 48075, + [SMALL_STATE(1249)] = 48107, + [SMALL_STATE(1250)] = 48145, + [SMALL_STATE(1251)] = 48177, + [SMALL_STATE(1252)] = 48209, + [SMALL_STATE(1253)] = 48244, + [SMALL_STATE(1254)] = 48273, + [SMALL_STATE(1255)] = 48308, + [SMALL_STATE(1256)] = 48337, + [SMALL_STATE(1257)] = 48366, + [SMALL_STATE(1258)] = 48395, + [SMALL_STATE(1259)] = 48418, + [SMALL_STATE(1260)] = 48447, + [SMALL_STATE(1261)] = 48474, + [SMALL_STATE(1262)] = 48497, + [SMALL_STATE(1263)] = 48524, + [SMALL_STATE(1264)] = 48559, + [SMALL_STATE(1265)] = 48582, + [SMALL_STATE(1266)] = 48609, + [SMALL_STATE(1267)] = 48636, + [SMALL_STATE(1268)] = 48665, + [SMALL_STATE(1269)] = 48694, + [SMALL_STATE(1270)] = 48721, + [SMALL_STATE(1271)] = 48750, + [SMALL_STATE(1272)] = 48779, + [SMALL_STATE(1273)] = 48814, + [SMALL_STATE(1274)] = 48843, + [SMALL_STATE(1275)] = 48870, + [SMALL_STATE(1276)] = 48893, + [SMALL_STATE(1277)] = 48925, + [SMALL_STATE(1278)] = 48957, + [SMALL_STATE(1279)] = 48983, + [SMALL_STATE(1280)] = 49001, + [SMALL_STATE(1281)] = 49031, + [SMALL_STATE(1282)] = 49049, + [SMALL_STATE(1283)] = 49081, + [SMALL_STATE(1284)] = 49099, + [SMALL_STATE(1285)] = 49131, + [SMALL_STATE(1286)] = 49155, + [SMALL_STATE(1287)] = 49187, + [SMALL_STATE(1288)] = 49213, + [SMALL_STATE(1289)] = 49235, + [SMALL_STATE(1290)] = 49261, + [SMALL_STATE(1291)] = 49287, + [SMALL_STATE(1292)] = 49311, + [SMALL_STATE(1293)] = 49340, + [SMALL_STATE(1294)] = 49365, + [SMALL_STATE(1295)] = 49390, + [SMALL_STATE(1296)] = 49411, + [SMALL_STATE(1297)] = 49440, + [SMALL_STATE(1298)] = 49469, + [SMALL_STATE(1299)] = 49498, + [SMALL_STATE(1300)] = 49527, + [SMALL_STATE(1301)] = 49556, + [SMALL_STATE(1302)] = 49585, + [SMALL_STATE(1303)] = 49606, + [SMALL_STATE(1304)] = 49635, + [SMALL_STATE(1305)] = 49664, + [SMALL_STATE(1306)] = 49685, + [SMALL_STATE(1307)] = 49714, + [SMALL_STATE(1308)] = 49743, + [SMALL_STATE(1309)] = 49772, + [SMALL_STATE(1310)] = 49801, + [SMALL_STATE(1311)] = 49828, + [SMALL_STATE(1312)] = 49857, + [SMALL_STATE(1313)] = 49878, + [SMALL_STATE(1314)] = 49899, + [SMALL_STATE(1315)] = 49920, + [SMALL_STATE(1316)] = 49949, + [SMALL_STATE(1317)] = 49978, + [SMALL_STATE(1318)] = 50003, + [SMALL_STATE(1319)] = 50032, + [SMALL_STATE(1320)] = 50061, + [SMALL_STATE(1321)] = 50090, + [SMALL_STATE(1322)] = 50119, + [SMALL_STATE(1323)] = 50144, + [SMALL_STATE(1324)] = 50170, + [SMALL_STATE(1325)] = 50188, + [SMALL_STATE(1326)] = 50204, + [SMALL_STATE(1327)] = 50220, + [SMALL_STATE(1328)] = 50246, + [SMALL_STATE(1329)] = 50266, + [SMALL_STATE(1330)] = 50292, + [SMALL_STATE(1331)] = 50312, + [SMALL_STATE(1332)] = 50338, + [SMALL_STATE(1333)] = 50354, + [SMALL_STATE(1334)] = 50370, + [SMALL_STATE(1335)] = 50394, + [SMALL_STATE(1336)] = 50418, + [SMALL_STATE(1337)] = 50444, + [SMALL_STATE(1338)] = 50460, + [SMALL_STATE(1339)] = 50480, + [SMALL_STATE(1340)] = 50496, + [SMALL_STATE(1341)] = 50513, + [SMALL_STATE(1342)] = 50536, + [SMALL_STATE(1343)] = 50551, + [SMALL_STATE(1344)] = 50574, + [SMALL_STATE(1345)] = 50589, + [SMALL_STATE(1346)] = 50604, + [SMALL_STATE(1347)] = 50621, + [SMALL_STATE(1348)] = 50636, + [SMALL_STATE(1349)] = 50651, + [SMALL_STATE(1350)] = 50666, + [SMALL_STATE(1351)] = 50689, + [SMALL_STATE(1352)] = 50704, + [SMALL_STATE(1353)] = 50719, + [SMALL_STATE(1354)] = 50737, + [SMALL_STATE(1355)] = 50755, + [SMALL_STATE(1356)] = 50769, + [SMALL_STATE(1357)] = 50783, + [SMALL_STATE(1358)] = 50797, + [SMALL_STATE(1359)] = 50811, + [SMALL_STATE(1360)] = 50829, + [SMALL_STATE(1361)] = 50847, + [SMALL_STATE(1362)] = 50863, + [SMALL_STATE(1363)] = 50877, + [SMALL_STATE(1364)] = 50895, + [SMALL_STATE(1365)] = 50909, + [SMALL_STATE(1366)] = 50927, + [SMALL_STATE(1367)] = 50941, + [SMALL_STATE(1368)] = 50955, + [SMALL_STATE(1369)] = 50973, + [SMALL_STATE(1370)] = 50987, + [SMALL_STATE(1371)] = 51001, + [SMALL_STATE(1372)] = 51015, + [SMALL_STATE(1373)] = 51031, + [SMALL_STATE(1374)] = 51049, + [SMALL_STATE(1375)] = 51065, + [SMALL_STATE(1376)] = 51076, + [SMALL_STATE(1377)] = 51087, + [SMALL_STATE(1378)] = 51098, + [SMALL_STATE(1379)] = 51109, + [SMALL_STATE(1380)] = 51120, + [SMALL_STATE(1381)] = 51137, + [SMALL_STATE(1382)] = 51148, + [SMALL_STATE(1383)] = 51165, + [SMALL_STATE(1384)] = 51176, + [SMALL_STATE(1385)] = 51187, + [SMALL_STATE(1386)] = 51198, + [SMALL_STATE(1387)] = 51209, + [SMALL_STATE(1388)] = 51220, + [SMALL_STATE(1389)] = 51231, + [SMALL_STATE(1390)] = 51250, + [SMALL_STATE(1391)] = 51269, + [SMALL_STATE(1392)] = 51283, + [SMALL_STATE(1393)] = 51297, + [SMALL_STATE(1394)] = 51311, + [SMALL_STATE(1395)] = 51327, + [SMALL_STATE(1396)] = 51343, + [SMALL_STATE(1397)] = 51359, + [SMALL_STATE(1398)] = 51373, + [SMALL_STATE(1399)] = 51387, + [SMALL_STATE(1400)] = 51401, + [SMALL_STATE(1401)] = 51415, + [SMALL_STATE(1402)] = 51431, + [SMALL_STATE(1403)] = 51447, + [SMALL_STATE(1404)] = 51463, + [SMALL_STATE(1405)] = 51477, + [SMALL_STATE(1406)] = 51493, + [SMALL_STATE(1407)] = 51507, + [SMALL_STATE(1408)] = 51523, + [SMALL_STATE(1409)] = 51539, + [SMALL_STATE(1410)] = 51555, + [SMALL_STATE(1411)] = 51571, + [SMALL_STATE(1412)] = 51587, + [SMALL_STATE(1413)] = 51603, + [SMALL_STATE(1414)] = 51613, + [SMALL_STATE(1415)] = 51629, + [SMALL_STATE(1416)] = 51645, + [SMALL_STATE(1417)] = 51659, + [SMALL_STATE(1418)] = 51675, + [SMALL_STATE(1419)] = 51691, + [SMALL_STATE(1420)] = 51707, + [SMALL_STATE(1421)] = 51716, + [SMALL_STATE(1422)] = 51729, + [SMALL_STATE(1423)] = 51742, + [SMALL_STATE(1424)] = 51755, + [SMALL_STATE(1425)] = 51768, + [SMALL_STATE(1426)] = 51781, + [SMALL_STATE(1427)] = 51794, + [SMALL_STATE(1428)] = 51807, + [SMALL_STATE(1429)] = 51820, + [SMALL_STATE(1430)] = 51833, + [SMALL_STATE(1431)] = 51846, + [SMALL_STATE(1432)] = 51859, + [SMALL_STATE(1433)] = 51872, + [SMALL_STATE(1434)] = 51885, + [SMALL_STATE(1435)] = 51898, + [SMALL_STATE(1436)] = 51911, + [SMALL_STATE(1437)] = 51924, + [SMALL_STATE(1438)] = 51937, + [SMALL_STATE(1439)] = 51950, + [SMALL_STATE(1440)] = 51963, + [SMALL_STATE(1441)] = 51976, + [SMALL_STATE(1442)] = 51989, + [SMALL_STATE(1443)] = 52002, + [SMALL_STATE(1444)] = 52015, + [SMALL_STATE(1445)] = 52028, + [SMALL_STATE(1446)] = 52037, + [SMALL_STATE(1447)] = 52050, + [SMALL_STATE(1448)] = 52063, + [SMALL_STATE(1449)] = 52076, + [SMALL_STATE(1450)] = 52085, + [SMALL_STATE(1451)] = 52098, + [SMALL_STATE(1452)] = 52111, + [SMALL_STATE(1453)] = 52124, + [SMALL_STATE(1454)] = 52137, + [SMALL_STATE(1455)] = 52150, + [SMALL_STATE(1456)] = 52163, + [SMALL_STATE(1457)] = 52176, + [SMALL_STATE(1458)] = 52189, + [SMALL_STATE(1459)] = 52202, + [SMALL_STATE(1460)] = 52215, + [SMALL_STATE(1461)] = 52228, + [SMALL_STATE(1462)] = 52241, + [SMALL_STATE(1463)] = 52254, + [SMALL_STATE(1464)] = 52267, + [SMALL_STATE(1465)] = 52276, + [SMALL_STATE(1466)] = 52289, + [SMALL_STATE(1467)] = 52302, + [SMALL_STATE(1468)] = 52315, + [SMALL_STATE(1469)] = 52328, + [SMALL_STATE(1470)] = 52341, + [SMALL_STATE(1471)] = 52354, + [SMALL_STATE(1472)] = 52367, + [SMALL_STATE(1473)] = 52380, + [SMALL_STATE(1474)] = 52393, + [SMALL_STATE(1475)] = 52406, + [SMALL_STATE(1476)] = 52419, + [SMALL_STATE(1477)] = 52432, + [SMALL_STATE(1478)] = 52445, + [SMALL_STATE(1479)] = 52458, + [SMALL_STATE(1480)] = 52471, + [SMALL_STATE(1481)] = 52484, + [SMALL_STATE(1482)] = 52497, + [SMALL_STATE(1483)] = 52510, + [SMALL_STATE(1484)] = 52523, + [SMALL_STATE(1485)] = 52536, + [SMALL_STATE(1486)] = 52549, + [SMALL_STATE(1487)] = 52562, + [SMALL_STATE(1488)] = 52575, + [SMALL_STATE(1489)] = 52588, + [SMALL_STATE(1490)] = 52601, + [SMALL_STATE(1491)] = 52614, + [SMALL_STATE(1492)] = 52627, + [SMALL_STATE(1493)] = 52636, + [SMALL_STATE(1494)] = 52645, + [SMALL_STATE(1495)] = 52658, + [SMALL_STATE(1496)] = 52667, + [SMALL_STATE(1497)] = 52680, + [SMALL_STATE(1498)] = 52693, + [SMALL_STATE(1499)] = 52706, + [SMALL_STATE(1500)] = 52719, + [SMALL_STATE(1501)] = 52732, + [SMALL_STATE(1502)] = 52745, + [SMALL_STATE(1503)] = 52758, + [SMALL_STATE(1504)] = 52771, + [SMALL_STATE(1505)] = 52784, + [SMALL_STATE(1506)] = 52797, + [SMALL_STATE(1507)] = 52810, + [SMALL_STATE(1508)] = 52823, + [SMALL_STATE(1509)] = 52836, + [SMALL_STATE(1510)] = 52847, + [SMALL_STATE(1511)] = 52860, + [SMALL_STATE(1512)] = 52873, + [SMALL_STATE(1513)] = 52886, + [SMALL_STATE(1514)] = 52899, + [SMALL_STATE(1515)] = 52912, + [SMALL_STATE(1516)] = 52925, + [SMALL_STATE(1517)] = 52938, + [SMALL_STATE(1518)] = 52951, + [SMALL_STATE(1519)] = 52960, + [SMALL_STATE(1520)] = 52969, + [SMALL_STATE(1521)] = 52982, + [SMALL_STATE(1522)] = 52995, + [SMALL_STATE(1523)] = 53008, + [SMALL_STATE(1524)] = 53021, + [SMALL_STATE(1525)] = 53034, + [SMALL_STATE(1526)] = 53047, + [SMALL_STATE(1527)] = 53058, + [SMALL_STATE(1528)] = 53071, + [SMALL_STATE(1529)] = 53084, + [SMALL_STATE(1530)] = 53097, + [SMALL_STATE(1531)] = 53110, + [SMALL_STATE(1532)] = 53123, + [SMALL_STATE(1533)] = 53133, + [SMALL_STATE(1534)] = 53143, + [SMALL_STATE(1535)] = 53153, + [SMALL_STATE(1536)] = 53163, + [SMALL_STATE(1537)] = 53173, + [SMALL_STATE(1538)] = 53183, + [SMALL_STATE(1539)] = 53193, + [SMALL_STATE(1540)] = 53203, + [SMALL_STATE(1541)] = 53213, + [SMALL_STATE(1542)] = 53221, + [SMALL_STATE(1543)] = 53231, + [SMALL_STATE(1544)] = 53241, + [SMALL_STATE(1545)] = 53251, + [SMALL_STATE(1546)] = 53261, + [SMALL_STATE(1547)] = 53271, + [SMALL_STATE(1548)] = 53281, + [SMALL_STATE(1549)] = 53291, + [SMALL_STATE(1550)] = 53301, + [SMALL_STATE(1551)] = 53309, + [SMALL_STATE(1552)] = 53319, + [SMALL_STATE(1553)] = 53329, + [SMALL_STATE(1554)] = 53337, + [SMALL_STATE(1555)] = 53347, + [SMALL_STATE(1556)] = 53355, + [SMALL_STATE(1557)] = 53363, + [SMALL_STATE(1558)] = 53373, + [SMALL_STATE(1559)] = 53383, + [SMALL_STATE(1560)] = 53393, + [SMALL_STATE(1561)] = 53403, + [SMALL_STATE(1562)] = 53413, + [SMALL_STATE(1563)] = 53423, + [SMALL_STATE(1564)] = 53433, + [SMALL_STATE(1565)] = 53441, + [SMALL_STATE(1566)] = 53449, + [SMALL_STATE(1567)] = 53457, + [SMALL_STATE(1568)] = 53467, + [SMALL_STATE(1569)] = 53477, + [SMALL_STATE(1570)] = 53485, + [SMALL_STATE(1571)] = 53495, + [SMALL_STATE(1572)] = 53505, + [SMALL_STATE(1573)] = 53515, + [SMALL_STATE(1574)] = 53525, + [SMALL_STATE(1575)] = 53533, + [SMALL_STATE(1576)] = 53543, + [SMALL_STATE(1577)] = 53553, + [SMALL_STATE(1578)] = 53563, + [SMALL_STATE(1579)] = 53571, + [SMALL_STATE(1580)] = 53579, + [SMALL_STATE(1581)] = 53589, + [SMALL_STATE(1582)] = 53597, + [SMALL_STATE(1583)] = 53605, + [SMALL_STATE(1584)] = 53615, + [SMALL_STATE(1585)] = 53625, + [SMALL_STATE(1586)] = 53635, + [SMALL_STATE(1587)] = 53645, + [SMALL_STATE(1588)] = 53653, + [SMALL_STATE(1589)] = 53661, + [SMALL_STATE(1590)] = 53669, + [SMALL_STATE(1591)] = 53679, + [SMALL_STATE(1592)] = 53687, + [SMALL_STATE(1593)] = 53697, + [SMALL_STATE(1594)] = 53707, + [SMALL_STATE(1595)] = 53715, + [SMALL_STATE(1596)] = 53725, + [SMALL_STATE(1597)] = 53735, + [SMALL_STATE(1598)] = 53743, + [SMALL_STATE(1599)] = 53753, + [SMALL_STATE(1600)] = 53763, + [SMALL_STATE(1601)] = 53773, + [SMALL_STATE(1602)] = 53783, + [SMALL_STATE(1603)] = 53793, + [SMALL_STATE(1604)] = 53803, + [SMALL_STATE(1605)] = 53811, + [SMALL_STATE(1606)] = 53819, + [SMALL_STATE(1607)] = 53829, + [SMALL_STATE(1608)] = 53836, + [SMALL_STATE(1609)] = 53843, + [SMALL_STATE(1610)] = 53850, + [SMALL_STATE(1611)] = 53857, + [SMALL_STATE(1612)] = 53864, + [SMALL_STATE(1613)] = 53871, + [SMALL_STATE(1614)] = 53878, + [SMALL_STATE(1615)] = 53885, + [SMALL_STATE(1616)] = 53892, + [SMALL_STATE(1617)] = 53899, + [SMALL_STATE(1618)] = 53906, + [SMALL_STATE(1619)] = 53913, + [SMALL_STATE(1620)] = 53920, + [SMALL_STATE(1621)] = 53927, + [SMALL_STATE(1622)] = 53934, + [SMALL_STATE(1623)] = 53941, + [SMALL_STATE(1624)] = 53948, + [SMALL_STATE(1625)] = 53955, + [SMALL_STATE(1626)] = 53962, + [SMALL_STATE(1627)] = 53969, + [SMALL_STATE(1628)] = 53976, + [SMALL_STATE(1629)] = 53983, + [SMALL_STATE(1630)] = 53990, + [SMALL_STATE(1631)] = 53997, + [SMALL_STATE(1632)] = 54004, + [SMALL_STATE(1633)] = 54011, + [SMALL_STATE(1634)] = 54018, + [SMALL_STATE(1635)] = 54025, + [SMALL_STATE(1636)] = 54032, + [SMALL_STATE(1637)] = 54039, + [SMALL_STATE(1638)] = 54046, + [SMALL_STATE(1639)] = 54053, + [SMALL_STATE(1640)] = 54060, + [SMALL_STATE(1641)] = 54067, + [SMALL_STATE(1642)] = 54074, + [SMALL_STATE(1643)] = 54081, + [SMALL_STATE(1644)] = 54088, + [SMALL_STATE(1645)] = 54095, + [SMALL_STATE(1646)] = 54102, + [SMALL_STATE(1647)] = 54109, + [SMALL_STATE(1648)] = 54116, + [SMALL_STATE(1649)] = 54123, + [SMALL_STATE(1650)] = 54130, + [SMALL_STATE(1651)] = 54137, + [SMALL_STATE(1652)] = 54144, + [SMALL_STATE(1653)] = 54151, + [SMALL_STATE(1654)] = 54158, + [SMALL_STATE(1655)] = 54165, + [SMALL_STATE(1656)] = 54172, + [SMALL_STATE(1657)] = 54179, + [SMALL_STATE(1658)] = 54186, + [SMALL_STATE(1659)] = 54193, + [SMALL_STATE(1660)] = 54200, + [SMALL_STATE(1661)] = 54207, + [SMALL_STATE(1662)] = 54214, + [SMALL_STATE(1663)] = 54221, + [SMALL_STATE(1664)] = 54228, + [SMALL_STATE(1665)] = 54235, + [SMALL_STATE(1666)] = 54242, + [SMALL_STATE(1667)] = 54249, + [SMALL_STATE(1668)] = 54256, + [SMALL_STATE(1669)] = 54263, + [SMALL_STATE(1670)] = 54270, + [SMALL_STATE(1671)] = 54277, + [SMALL_STATE(1672)] = 54284, + [SMALL_STATE(1673)] = 54291, + [SMALL_STATE(1674)] = 54298, + [SMALL_STATE(1675)] = 54305, + [SMALL_STATE(1676)] = 54312, + [SMALL_STATE(1677)] = 54319, + [SMALL_STATE(1678)] = 54326, + [SMALL_STATE(1679)] = 54333, + [SMALL_STATE(1680)] = 54340, + [SMALL_STATE(1681)] = 54347, + [SMALL_STATE(1682)] = 54354, + [SMALL_STATE(1683)] = 54361, + [SMALL_STATE(1684)] = 54368, + [SMALL_STATE(1685)] = 54375, + [SMALL_STATE(1686)] = 54382, + [SMALL_STATE(1687)] = 54389, + [SMALL_STATE(1688)] = 54396, + [SMALL_STATE(1689)] = 54403, + [SMALL_STATE(1690)] = 54410, + [SMALL_STATE(1691)] = 54417, + [SMALL_STATE(1692)] = 54424, + [SMALL_STATE(1693)] = 54431, + [SMALL_STATE(1694)] = 54438, + [SMALL_STATE(1695)] = 54445, + [SMALL_STATE(1696)] = 54452, + [SMALL_STATE(1697)] = 54459, + [SMALL_STATE(1698)] = 54466, + [SMALL_STATE(1699)] = 54473, + [SMALL_STATE(1700)] = 54480, + [SMALL_STATE(1701)] = 54487, + [SMALL_STATE(1702)] = 54494, + [SMALL_STATE(1703)] = 54501, + [SMALL_STATE(1704)] = 54508, + [SMALL_STATE(1705)] = 54515, + [SMALL_STATE(1706)] = 54522, + [SMALL_STATE(1707)] = 54529, + [SMALL_STATE(1708)] = 54536, + [SMALL_STATE(1709)] = 54543, + [SMALL_STATE(1710)] = 54550, + [SMALL_STATE(1711)] = 54557, + [SMALL_STATE(1712)] = 54564, + [SMALL_STATE(1713)] = 54571, + [SMALL_STATE(1714)] = 54578, + [SMALL_STATE(1715)] = 54585, + [SMALL_STATE(1716)] = 54592, + [SMALL_STATE(1717)] = 54599, + [SMALL_STATE(1718)] = 54606, + [SMALL_STATE(1719)] = 54613, + [SMALL_STATE(1720)] = 54620, + [SMALL_STATE(1721)] = 54627, + [SMALL_STATE(1722)] = 54634, + [SMALL_STATE(1723)] = 54641, + [SMALL_STATE(1724)] = 54648, + [SMALL_STATE(1725)] = 54655, + [SMALL_STATE(1726)] = 54662, + [SMALL_STATE(1727)] = 54669, + [SMALL_STATE(1728)] = 54676, + [SMALL_STATE(1729)] = 54683, + [SMALL_STATE(1730)] = 54690, + [SMALL_STATE(1731)] = 54697, + [SMALL_STATE(1732)] = 54704, + [SMALL_STATE(1733)] = 54711, + [SMALL_STATE(1734)] = 54718, + [SMALL_STATE(1735)] = 54725, + [SMALL_STATE(1736)] = 54732, + [SMALL_STATE(1737)] = 54739, + [SMALL_STATE(1738)] = 54746, + [SMALL_STATE(1739)] = 54753, + [SMALL_STATE(1740)] = 54760, + [SMALL_STATE(1741)] = 54767, + [SMALL_STATE(1742)] = 54774, + [SMALL_STATE(1743)] = 54781, + [SMALL_STATE(1744)] = 54788, + [SMALL_STATE(1745)] = 54795, + [SMALL_STATE(1746)] = 54802, + [SMALL_STATE(1747)] = 54809, + [SMALL_STATE(1748)] = 54816, + [SMALL_STATE(1749)] = 54823, + [SMALL_STATE(1750)] = 54830, + [SMALL_STATE(1751)] = 54837, + [SMALL_STATE(1752)] = 54844, + [SMALL_STATE(1753)] = 54851, + [SMALL_STATE(1754)] = 54858, + [SMALL_STATE(1755)] = 54865, + [SMALL_STATE(1756)] = 54872, + [SMALL_STATE(1757)] = 54879, + [SMALL_STATE(1758)] = 54886, + [SMALL_STATE(1759)] = 54893, + [SMALL_STATE(1760)] = 54900, + [SMALL_STATE(1761)] = 54907, + [SMALL_STATE(1762)] = 54914, + [SMALL_STATE(1763)] = 54921, + [SMALL_STATE(1764)] = 54928, + [SMALL_STATE(1765)] = 54935, + [SMALL_STATE(1766)] = 54942, + [SMALL_STATE(1767)] = 54949, + [SMALL_STATE(1768)] = 54956, + [SMALL_STATE(1769)] = 54963, + [SMALL_STATE(1770)] = 54970, + [SMALL_STATE(1771)] = 54977, + [SMALL_STATE(1772)] = 54984, + [SMALL_STATE(1773)] = 54991, + [SMALL_STATE(1774)] = 54998, + [SMALL_STATE(1775)] = 55005, + [SMALL_STATE(1776)] = 55012, + [SMALL_STATE(1777)] = 55019, + [SMALL_STATE(1778)] = 55026, + [SMALL_STATE(1779)] = 55033, + [SMALL_STATE(1780)] = 55040, + [SMALL_STATE(1781)] = 55047, + [SMALL_STATE(1782)] = 55054, + [SMALL_STATE(1783)] = 55061, + [SMALL_STATE(1784)] = 55068, + [SMALL_STATE(1785)] = 55075, + [SMALL_STATE(1786)] = 55082, + [SMALL_STATE(1787)] = 55089, + [SMALL_STATE(1788)] = 55096, + [SMALL_STATE(1789)] = 55103, + [SMALL_STATE(1790)] = 55110, + [SMALL_STATE(1791)] = 55117, + [SMALL_STATE(1792)] = 55124, + [SMALL_STATE(1793)] = 55131, + [SMALL_STATE(1794)] = 55138, + [SMALL_STATE(1795)] = 55145, + [SMALL_STATE(1796)] = 55152, + [SMALL_STATE(1797)] = 55159, + [SMALL_STATE(1798)] = 55166, + [SMALL_STATE(1799)] = 55173, + [SMALL_STATE(1800)] = 55180, + [SMALL_STATE(1801)] = 55187, + [SMALL_STATE(1802)] = 55194, + [SMALL_STATE(1803)] = 55201, + [SMALL_STATE(1804)] = 55208, + [SMALL_STATE(1805)] = 55215, + [SMALL_STATE(1806)] = 55222, + [SMALL_STATE(1807)] = 55229, + [SMALL_STATE(1808)] = 55236, + [SMALL_STATE(1809)] = 55243, + [SMALL_STATE(1810)] = 55250, + [SMALL_STATE(1811)] = 55257, + [SMALL_STATE(1812)] = 55264, + [SMALL_STATE(1813)] = 55271, + [SMALL_STATE(1814)] = 55278, + [SMALL_STATE(1815)] = 55285, + [SMALL_STATE(1816)] = 55292, + [SMALL_STATE(1817)] = 55299, + [SMALL_STATE(1818)] = 55306, + [SMALL_STATE(1819)] = 55313, + [SMALL_STATE(1820)] = 55320, + [SMALL_STATE(1821)] = 55327, + [SMALL_STATE(1822)] = 55334, + [SMALL_STATE(1823)] = 55341, + [SMALL_STATE(1824)] = 55348, + [SMALL_STATE(1825)] = 55355, + [SMALL_STATE(1826)] = 55362, + [SMALL_STATE(1827)] = 55369, + [SMALL_STATE(1828)] = 55376, + [SMALL_STATE(1829)] = 55383, + [SMALL_STATE(1830)] = 55390, + [SMALL_STATE(1831)] = 55397, + [SMALL_STATE(1832)] = 55404, + [SMALL_STATE(1833)] = 55411, + [SMALL_STATE(1834)] = 55418, + [SMALL_STATE(1835)] = 55425, + [SMALL_STATE(1836)] = 55432, + [SMALL_STATE(1837)] = 55439, + [SMALL_STATE(1838)] = 55446, + [SMALL_STATE(1839)] = 55453, + [SMALL_STATE(1840)] = 55460, + [SMALL_STATE(1841)] = 55467, + [SMALL_STATE(1842)] = 55474, + [SMALL_STATE(1843)] = 55481, + [SMALL_STATE(1844)] = 55488, + [SMALL_STATE(1845)] = 55495, + [SMALL_STATE(1846)] = 55502, + [SMALL_STATE(1847)] = 55509, + [SMALL_STATE(1848)] = 55516, + [SMALL_STATE(1849)] = 55523, + [SMALL_STATE(1850)] = 55530, + [SMALL_STATE(1851)] = 55537, + [SMALL_STATE(1852)] = 55544, + [SMALL_STATE(1853)] = 55551, + [SMALL_STATE(1854)] = 55558, + [SMALL_STATE(1855)] = 55565, + [SMALL_STATE(1856)] = 55572, + [SMALL_STATE(1857)] = 55579, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -89961,1792 +107645,1985 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(439), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1131), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1519), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(977), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1520), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1387), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(393), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(524), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(524), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(525), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(111), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(914), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(752), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1610), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1398), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1607), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(938), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(730), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(720), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(800), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(924), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1245), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1212), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1205), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1386), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1352), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(554), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1567), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1385), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(210), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1614), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(476), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1563), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1561), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1526), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(529), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(532), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1592), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1590), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1180), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(649), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1390), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1231), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(649), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(436), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1121), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1615), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1004), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1613), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1406), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(216), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(911), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(760), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1395), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1392), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(527), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1599), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1391), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(164), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1596), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(490), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1595), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1594), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1593), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(440), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1138), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1452), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(947), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1362), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(260), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(909), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1369), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1347), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(536), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1451), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1404), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(208), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1612), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(468), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1431), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1459), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(437), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1142), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1572), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(986), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1550), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1399), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(270), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(907), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(754), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1365), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1380), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(549), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1470), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1367), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(158), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1616), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(492), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1464), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1461), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1554), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(393), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(524), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(524), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(525), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(111), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(914), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(730), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1610), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1398), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1607), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(720), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(800), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(924), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1245), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1212), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1205), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1386), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1352), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1385), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(210), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1614), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(476), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1563), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1561), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1526), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(529), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(532), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1592), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1590), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1180), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(649), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1390), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1231), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(649), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(435), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(270), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(907), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1365), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1380), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1367), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(158), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1616), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(492), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1464), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1461), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1554), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(438), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(216), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(911), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1395), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1392), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1391), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(164), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1596), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(490), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1595), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1594), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1593), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(442), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(260), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(909), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1369), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1347), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1404), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(208), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1612), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(468), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1434), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1431), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1459), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 101), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 101), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 90), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 90), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 88), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 88), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 93), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 93), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 80), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 80), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 102), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 102), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 108), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 108), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 79), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 79), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 78), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 77), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 77), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 92), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 92), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 66), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 66), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 61), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 61), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 52), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 52), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 54), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 54), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 58), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 58), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(658), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(393), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(524), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(524), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(525), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(216), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1407), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(33), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1395), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1392), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(527), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1599), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1391), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(164), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1596), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(490), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1595), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1594), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1593), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(529), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(532), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1592), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1590), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1180), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1390), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1231), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(660), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(270), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1365), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1380), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(549), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1470), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1367), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(158), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1616), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(492), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1464), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1461), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1554), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 73), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 73), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(661), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(111), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1386), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1352), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(554), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1567), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1385), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(210), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1614), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(476), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1563), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1561), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1526), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(659), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(260), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1369), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1347), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(536), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1451), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1404), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(208), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1612), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(468), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1434), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1431), - [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1459), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1548] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(897), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(932), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1573), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(972), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1486), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1401), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(730), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1610), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1351), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1607), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(720), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(800), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(924), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1245), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1212), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1205), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1549), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(988), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1468), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1363), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1574), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(984), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1535), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1403), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(515), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1231), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 83), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 83), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 97), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 97), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 111), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 111), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 81), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 81), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 106), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 106), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(691), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(730), - [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1610), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1351), - [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1607), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(720), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 52), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 52), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 89), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 89), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(744), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 64), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(933), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 87), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 51), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(720), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(897), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 44), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 44), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2562] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(897), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1066), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1065), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1469), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1398), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1610), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 85), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 85), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 85), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 71), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 71), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 50), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 50), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 86), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 86), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 50), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 50), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 43), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 43), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 86), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 86), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1220), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 86), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 86), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 61), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(580), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1546), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 74), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 50), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 60), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 86), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 50), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 71), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1214), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1214), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 67), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 95), SHIFT_REPEAT(1149), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 95), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 67), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 104), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 82), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 95), SHIFT_REPEAT(1159), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 95), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 82), - [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), SHIFT_REPEAT(1186), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 96), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(420), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 103), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 75), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1071), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1359), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1358), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 113), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 113), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 67), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1533), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 112), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1104), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 110), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 96), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 105), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(657), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1396), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 103), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(496), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(899), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 67), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), SHIFT_REPEAT(1087), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(952), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 105), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 27), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 58), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 58), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 73), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3856] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 73), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 14), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(545), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1302), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1722), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1155), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1723), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1551), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(498), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(711), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(711), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(669), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(105), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1095), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(903), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1852), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1536), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1849), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1061), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(856), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(837), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(920), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1071), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1525), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1390), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1389), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1554), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1567), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(674), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1762), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1559), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(476), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1853), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(604), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1744), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1743), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1729), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(688), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(654), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1833), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1832), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1361), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(764), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1541), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1395), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(764), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 14), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(541), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1313), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1778), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1145), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1753), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1573), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(186), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1066), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(895), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1533), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1560), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(649), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1618), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1532), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(473), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1855), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(597), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1617), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1611), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1757), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(540), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1295), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1801), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1175), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1779), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1592), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(284), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1065), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(905), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1575), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1549), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(643), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1710), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1577), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(394), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1857), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(599), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1708), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1696), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1783), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(539), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1789), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1154), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1856), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1535), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(306), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1093), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(889), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(48), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1537), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1538), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(680), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1841), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1539), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(451), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1838), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(559), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1837), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1835), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1834), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(542), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1312), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1657), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1144), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1658), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1562), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(262), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1060), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(888), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(50), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1585), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1596), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(663), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1679), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1583), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(424), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1851), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(571), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1691), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1694), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1662), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(547), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(498), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(711), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(711), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(669), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(105), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1095), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(856), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1852), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1536), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1849), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(837), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(920), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1071), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1525), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1390), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1389), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1554), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1567), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1559), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(476), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1853), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(604), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1744), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1743), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1729), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(688), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(654), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1833), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1832), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1361), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(764), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1541), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1395), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(764), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(747), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(538), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(186), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1066), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1533), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1560), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1532), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(473), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1855), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(597), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1617), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1611), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1757), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(544), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(262), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1060), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(50), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1585), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1596), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1583), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(424), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1851), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(571), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1691), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1662), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(546), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(284), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1065), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1575), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1549), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1577), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(394), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1857), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(599), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1708), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1696), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1783), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(543), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(306), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1093), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(48), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1537), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1538), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1539), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(451), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1838), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(559), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1837), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1835), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1834), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 101), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 101), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 52), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 52), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 45), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 45), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 108), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 108), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 102), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 102), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 100), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 100), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 99), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 99), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 93), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 93), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 92), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 92), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 90), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 90), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 88), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 88), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 80), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 80), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 79), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 79), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 77), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 77), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 66), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 66), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 61), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 61), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 58), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 58), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 54), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 54), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 73), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 73), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(789), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(498), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(711), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(711), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(669), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(306), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1603), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(48), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1537), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1538), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(680), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1539), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(451), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1838), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(559), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1837), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1835), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1834), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(688), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(654), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1833), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1832), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1361), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(764), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1541), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1395), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(764), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(747), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(787), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(105), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(33), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1554), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1567), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(674), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1762), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1559), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(476), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1853), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(604), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1744), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1743), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1729), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(785), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(186), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1533), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1560), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1618), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1532), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(473), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1855), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(597), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1617), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1611), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1757), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(786), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(284), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1575), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1549), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(643), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1710), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1577), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(394), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1857), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(599), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1708), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1696), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1783), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(788), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(262), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(50), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1585), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1596), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(663), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1679), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1583), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(424), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1851), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(571), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1691), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1694), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1662), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1064), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1802), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1150), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1689), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1601), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(856), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1852), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1568), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1849), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(837), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(920), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1071), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1525), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1390), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1389), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1838] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(1032), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1803), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1143), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1738), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1598), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1804), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1167), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1764), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1600), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1752), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1142), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1754), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1595), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(718), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1395), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 106), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 106), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 81), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 81), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 83), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 83), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 111), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 111), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 97), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 97), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(784), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(856), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1852), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1568), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1849), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(837), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 52), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 52), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 89), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 89), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(892), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1083), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 87), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 51), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 64), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1032), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(837), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 44), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 44), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2851] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1032), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1230), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1229), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1756), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1536), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 85), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1852), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 70), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 85), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 70), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 70), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 85), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 71), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 71), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 50), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 50), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 86), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 86), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 50), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 50), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 86), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 86), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 43), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 43), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 61), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 86), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 86), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(701), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1675), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1413), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 60), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 50), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 74), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 86), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 50), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 71), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 104), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 82), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 95), SHIFT_REPEAT(1330), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 95), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 67), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 82), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 96), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 95), SHIFT_REPEAT(1328), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 95), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 67), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1414), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1414), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), SHIFT_REPEAT(1369), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 96), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1558), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1242), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 113), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 113), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1664), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 112), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), SHIFT_REPEAT(1271), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 110), + [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1584), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 103), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1029), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(581), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1190), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 105), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(723), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 67), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 103), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1581), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 67), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 75), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1268), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(527), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 27), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 105), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 59), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 58), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 73), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 73), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4293] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 58), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 401a0e6..570aa27 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -489,6 +489,8 @@ Type qualifiers const _Atomic unsigned long int x = 5; restrict int y = 6; volatile int z = 7; +constexpr int a = 8; +noreturn void b() {} -------------------------------------------------------------------------------- @@ -512,7 +514,20 @@ volatile int z = 7; (primitive_type) (init_declarator (identifier) - (number_literal)))) + (number_literal))) + (declaration + (type_qualifier) + (primitive_type) + (init_declarator + (identifier) + (number_literal))) + (function_definition + (type_qualifier) + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement))) ================================================================================ Local array declarations diff --git a/test/corpus/preprocessor.txt b/test/corpus/preprocessor.txt index ee2f204..51f03d5 100644 --- a/test/corpus/preprocessor.txt +++ b/test/corpus/preprocessor.txt @@ -164,6 +164,52 @@ int b; name: (identifier) alternative: (preproc_else))))) +================================================================================ +Elifdefs +================================================================================ + +#ifndef DEFINE1 +int j; +#elifndef DEFINE2 +int k; +#endif + +#ifdef DEFINE2 +ssize_t b; +#elifdef DEFINE3 +ssize_t c; +#else +int b; +#endif + +-------------------------------------------------------------------------------- + +(translation_unit + (preproc_ifdef + (identifier) + (declaration + (primitive_type) + (identifier)) + (preproc_elifdef + (identifier) + (declaration + (primitive_type) + (identifier)))) + (preproc_ifdef + (identifier) + (declaration + (primitive_type) + (identifier)) + (preproc_elifdef + (identifier) + (declaration + (primitive_type) + (identifier)) + (preproc_else + (declaration + (primitive_type) + (identifier)))))) + ================================================================================ General if blocks ================================================================================